Changes between Version 1 and Version 2 of gitnotes
- Timestamp:
- 08/20/15 12:01:03 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gitnotes
v1 v2 1 1 = TerraMA2 - git usage notes = 2 2 3 If you want to set the user name and e-mail for tracking commits, type in the shell: 3 After cloning a repository, make sure you have set the user name and e-mail for the repository: 4 {{{ 5 git config user.name username 6 git config user.email username@gmail.com 7 }}} 8 9 If you want to set the user name and e-mail for tracking commits, and set it globally (for all repositories), type in the shell: 4 10 {{{ 5 11 git config --global user.name "user-name" 6 12 git config --global user.email "user-name@my.address" 7 13 }}} 14 15 If you need to disable SSL verification you can do this by typing in the shell: 16 {{{ 17 git config --global http.sslVerify false 18 }}} 19 20 If you prefer to disable SSL at system level, you can do: 21 {{{ 22 sudo git config --system http.sslVerify false 23 }}} 24 8 25 9 26 To sync your local copy with the server:
