Info | ||
---|---|---|
| ||
...
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.
Working with stuff that's NOT on a local computer
...