Changes between Version 67 and Version 68 of DeveloperGuidelines/Git
- Timestamp:
- 09/18/13 11:00:44 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v67 v68 233 233 https://docs.google.com/drawings/d/1Vhvm1EmqWOVNZkZsiJ0MLLpdTl6H_ya263Tdb2HK1N0/edit 234 234 == Developer Configuration == 235 236 Tell git your name and email, which it uses to identify you as the author of commits. 237 And tell it your account on !GitHub. 235 238 {{{ 236 239 git config --global user.name "Your Name" … … 238 241 git config --global github.user yourgithubusername 239 242 git config --global github.token yourtoken 243 }}} 244 245 These are examples of other settings, and are not necessarily ones you'll want to use. 246 Choice of diff and merge tools is contentious -- use your favorite. 247 {{{ 240 248 git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" 241 249 git config --global merge.tool diffmerge