I've wanted to learn more about Git for a while, since it is the trendy version control system. However, it has a notoriously steep learning curve. As such, there are many overviews available online. In keeping with the general theme of this blog I've decided to provide my own inferior overview.
As I said, there are many guides online, but I liked this one.
The main thing I want to summarize is the different conceptual levels a file goes through in the backup process:
- To begin, we have untracked files. All your files will begin at this level, and git will do nothing with them until you tell it to.
- The first time you add a file, it becomes tracked. This means git will monitor it and when you run
git status
, it will alert you to changes. - You must explicitly stage files which are part of a single change. Files that are staged will all by saved by the next step. You stage files with
git add
. - When you commit changes it takes the currently staged files and makes a record of the changes. At this point the changes are backed up locally, and you can roll them back later. You can skip the staged step and directly commit any tracked file that has changed with
git commit -a
. - For remote backups, you can push your changes to a site like Github. Once the files are uploaded there, others can see them and download them with pull.
No comments:
Post a Comment