blob: e2f5ee4d323c14cb42fe4025eb215769c8cc2d56 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
Note: I am not using Visual Studio, I am on a Macbook, so my methods of commiting and pushing are a little bit different.
1. Open up Mac Terminal and find the directory of the local repository
2. In the Terminal, type "git status" to see the current changes that are being awaited to be commited
3. In the Terminal, type "git add ." to add all the changes or type "git add [filename]" to add certain files
4. In the Terminal, type "git commit -m "[message about this commit]" to commit the changes to my local repository
5. In the Terminal, if I have cloned and connected my Github account, type "git push" to push my local changes to the remote repository
on GitHub
|