Skip to content

Instantly share code, notes, and snippets.

@relwell
Created August 7, 2020 22:35
Show Gist options
  • Save relwell/f3b739eddade9554569c2ca406214bea to your computer and use it in GitHub Desktop.
Save relwell/f3b739eddade9554569c2ca406214bea to your computer and use it in GitHub Desktop.
# checks out the new branch
git checkout -b my-branch
# add your changes
git add .
# commit your changes
git commit -m 'this is my commit message'
# push your changes
git push origin master
# github will give you a link in the terminal to open a pull request!
open $THAT_LINK # will open in the browser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment