Skip to content

Instantly share code, notes, and snippets.

@TGion
Last active August 28, 2023 13:26
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
GIT pull request
# Create pull request for public repo (already forked)
git checkout -b new_branch
git remote add upstream URL_OF_FORK
# Make changes to FILE
git add FILE
git commit -S -m "Adding a FILE to new_branch"
git push -u origin new_branch
# Continue on github -> Compare & pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment