Skip to content

Instantly share code, notes, and snippets.

View angelhvargas's full-sized avatar
💭
I may be slow to respond.

Angel Vargas angelhvargas

💭
I may be slow to respond.
View GitHub Profile
@angelhvargas
angelhvargas / config_git_goget.md
Created December 13, 2020 13:51
Fix to make go get work from private repos/orgs

Config target:

git config --global url."git@github.com:".insteadOf "https://github.com/"
Removing the passphrase from my ./ssh/id_rsa key which was used for authenticating the connection to the repository. This can be done by entering an empty password when prompted as a response to:

ssh-keygen -p
@angelhvargas
angelhvargas / commit_message_guide.txt
Last active September 28, 2019 11:28
Commit message structure.
Commit Messages
Message Structure
A commit messages consists of three distinct parts separated by a blank line: the title, an optional body and an optional footer. The layout looks like this:
type: subject
body
footer
The title consists of the type of the message and subject.