Created
August 7, 2020 22:35
-
-
Save relwell/f3b739eddade9554569c2ca406214bea to your computer and use it in GitHub Desktop.
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
# 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