Git commands#
A Git workflow basically has commands that are executed continuously and commands that are needed from time to time. Since Git is an explicit system, so it doesn’t automatically sync files (e.g. like Dropbox) you need the following commands on a daily basis to work together:
Commit
Push
Pull
Common Git commands#
Commit#
This will “freeze” the file versions. A commit is so to speak a version of the project, so a kind of checkpoint. When committing, Anchorpoint duplicates the files in the changed files and puts them in a cache folder. So you can continue to work on the file, for example, overwrite it, because the committed version is practically secured.
Push#
The push uploads the commits (i.e. the project checkpoints) to the server. Once they are uploaded, the team can download them via a pull.
Pull#
The pull downloads commits from the server. After the pull, you are up to date. The pull also happens explicitly, so you can’t break anything while working. If a commit has caused problems (e.g. the level in the game engine no longer loads), it can be undone via Undo Commit.
Other Git commands#
Undo Commit#
As the project progresses, it often happens that you want to roll back a commit (i.e. a project version). Undo Commit does a “reverse” operation. It does not delete the commit directly, but it creates changed files, which cause exactly the opposite. If new files were added in the commit, Undo Commit removes them. They then show up as removed files in the changed files. If a file has been modified, Undo Commit restores the file to its previous state, creating a changed file. If the changed files are then committed, the old commit has actually been undone.
Clear Cache#
The Clear Cache option can be found in the Git Settings. It deletes old versions from the hard disk, but not from the server. For example, if you have a file with 3 Git versions, the first two are removed and the last version remains. If you want to jump back to version 2 (e.g. you make an undo commit to version 3) Anchorpoint will download version 2 from the server again.
Revert#
A revert resets your project to the last commit. This means that all changed files are removed. This is useful if you have made accidental changes to a project and want to jump back. Be careful with this operation because it cannot be undone.
Shelf#
A shelf puts all your changed files into a kind of drawer. It does a kind of revert (so it resets your project to the last commit) but it does not delete your files. You will see in Anchorpoint under the Changed files an entry Shelved Files. There you can restore the files and they will reappear in the Changed files.