Info | ||
---|---|---|
| ||
Info | ||
---|---|---|
| ||
|
- Create a GitHub account
- Download GitHub console
- If you want the GUI, download it from here
...
Git add does more than add files to the local repository, to moves modified from modified state to the staged state, once in the staged state, they still need to be committed using git commit. If you are sure the commit is definite, the execute a git push to push the committed changes up to git.
Git commit
Takes the staged snapshot and commits it to the project history. The changes are still only on your local system not on the origin server. To make the changes present on the origin server the changes must be pushed to the origin server.
Git push <git server> <project branch>
The git push command consists of the server id and the branch, so the typical command is git push origin master, where origin is the home server and master the main branch.
Working with stuff that's NOT on a local computer
...