| | 82 | |
| | 83 | === GUI === |
| | 84 | |
| | 85 | Git has a basic TK-based GUI, called gitk. It works well to navigate the history. There are native UI for git for most platforms, including windows and mac os X: |
| | 86 | |
| | 87 | * TortoiseGit: http://code.google.com/p/tortoisegit/ |
| | 88 | * gitx (native mac os X client): http://gitx.frim.nl |
| | 89 | |
| | 90 | === basic configuration === |
| | 91 | |
| | 92 | At minimum, set up your name and email, so that they appear correctly for commits: |
| | 93 | |
| | 94 | {{{ |
| | 95 | git config --global user.name "Your Name Comes Here" |
| | 96 | git config --global user.email name@domain.example.com |
| | 97 | }}} |
| | 98 | |