Changes between Version 4 and Version 5 of GitMigrationProposal

Show
Ignore:
Timestamp:
03/15/09 05:43:28 (4 years ago)
Author:
cdavid
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitMigrationProposal

    v4 v5  
    8080 
    8181There are two easy ways to install git: the native installer or the cygwin installer. Unless you are a regular user of cygwin, the native installer is the best choice. It can be found there: http://code.google.com/p/msysgit/ 
     82 
     83=== GUI === 
     84 
     85Git 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 
     92At minimum, set up your name and email, so that they appear correctly for commits: 
     93 
     94{{{ 
     95git config --global user.name "Your Name Comes Here" 
     96git config --global user.email name@domain.example.com 
     97}}} 
     98