Changes between Version 67 and Version 68 of DeveloperGuidelines/Git


Ignore:
Timestamp:
09/18/13 11:00:44 (11 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v67 v68  
    233233https://docs.google.com/drawings/d/1Vhvm1EmqWOVNZkZsiJ0MLLpdTl6H_ya263Tdb2HK1N0/edit
    234234== Developer Configuration ==
     235
     236Tell git your name and email, which it uses to identify you as the author of commits.
     237And tell it your account on !GitHub.
    235238{{{
    236239git config --global user.name "Your Name"
     
    238241git config --global github.user yourgithubusername
    239242git config --global github.token yourtoken
     243}}}
     244
     245These are examples of other settings, and are not necessarily ones you'll want to use.
     246Choice of diff and merge tools is contentious -- use your favorite.
     247{{{
    240248git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"
    241249git config --global merge.tool diffmerge