... | ... | @@ -28,8 +28,9 @@ |
|
|
- Why git?
|
|
|
- [Compared to SVN](https://git.wiki.kernel.org/index.php/GitSvnComparsion): faster, smaller repositories, better merging, better branching, distributed (offline access, full local copy of the repo)
|
|
|
- Typical workflow for making changes
|
|
|
- `git clone <REPOSITORY_URL_HERE>` (one-time action)
|
|
|
- `git pull`
|
|
|
- `git add`
|
|
|
- `git add` (only once for files not yet in the repository)
|
|
|
- `git commit -a`
|
|
|
- `git push`
|
|
|
- GUIs
|
... | ... | |