OLD | NEW |
1 Git Setup | 1 Git Setup |
2 ========= | 2 ========= |
3 | 3 |
4 This tutorial also uses a revision control program called | 4 This tutorial also uses a revision control program called |
5 `git <http://en.wikipedia.org/wiki/Git_(software)>`_. | 5 `git <http://en.wikipedia.org/wiki/Git_(software)>`_. |
6 In order to commit to a git repository, | 6 In order to commit to a git repository, |
7 you need to setup your environment to with your identity. | 7 you need to set up your identity. |
8 | 8 |
9 Run these commands (with your info) to setup your `~/.gitconfig` | 9 Run these commands (with your info) to setup your `~/.gitconfig` |
10 for use:: | 10 for use:: |
11 | 11 |
12 git config --global user.name "John Doe" | 12 git config --global user.name "John Doe" |
13 git config --global user.email johndoe@example.com | 13 git config --global user.email johndoe@example.com |
OLD | NEW |