Last active
January 22, 2019 23:15
-
-
Save dvschultz/0d78a71246c8bdfa2adcd9f3bb139e22 to your computer and use it in GitHub Desktop.
How to make a pull request
This file contains hidden or 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
| //navigate to your repos folder (make one if you don’t have it) | |
| git clone https://github.com/dvschultz/PSD-WAMD-SP19.git | |
| cd PSD-WAMD-SP19 | |
| //make changes/add your name to the students.html file | |
| git status | |
| //make sure your changes have been recorded | |
| git commit -am "I added my name" | |
| git push origin master | |
| //if you didn’t get any errors you did it | |
| //if you did get errors try to fix them (edit the file or do the following) | |
| git pull | |
| //try to pull the current changes down, then try again | |
| git commit -am "I added my name again" | |
| git push origin master | |
| //still getting errors? contact me |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment