Last active
February 1, 2019 07:39
-
-
Save snowcrumble/3893502395428b9618e7d05eb8e5f0d6 to your computer and use it in GitHub Desktop.
Golang contributor guide template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p $GOPATH/src/github.com/someone_or_organization/ | |
cd $GOPATH/src/github.com/someone_or_organization/ | |
git clone [email protected]:$YOUR_GITHUB_USERNAME/the_repo_name.git | |
cd the_repo_name | |
git remote add upstream [email protected]:someone_or_organization/the_repo_name.git | |
git remote set-url --push upstream no_push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment