Created
April 5, 2014 06:16
-
-
Save alberthdev/9988066 to your computer and use it in GitHub Desktop.
Git Howto
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
Git Howto | |
=========== | |
1. For Windows, download and install: http://git-scm.com/download/win | |
If you're on Linux, you don't need help. | |
If you're on Mac, you need a LOT of help! ;) (If not, http://git-scm.com/download/mac) | |
2. git clone https://github.com/alberthrocks/bitcamp2014.git | |
3. cd bitcamp2014 | |
-------- | |
4. Add files, make changes, etc. | |
5. See changes: git status | |
6. git add myfile | |
(repeat for any other files you've changed) | |
7. git commit -m "My message for my commit! Describe your changes here!" | |
8. git push | |
(enter GitHub username/pass) | |
9. Repeat 4-8 until you're done! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment