Changes between Version 1 and Version 2 of gitnotes


Ignore:
Timestamp:
08/20/15 12:01:03 (11 years ago)
Author:
gribeiro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • gitnotes

    v1 v2  
    11= TerraMA2 - git usage notes = 
    22 
    3 If you want to set the user name and e-mail for tracking commits, type in the shell: 
     3After cloning a repository, make sure you have set the user name and e-mail for the repository: 
     4{{{ 
     5git config user.name username 
     6git config user.email username@gmail.com 
     7}}} 
     8 
     9If you want to set the user name and e-mail for tracking commits, and set it globally (for all repositories), type in the shell: 
    410{{{ 
    511git config --global user.name "user-name" 
    612git config --global user.email "user-name@my.address" 
    713}}} 
     14 
     15If you need to disable SSL verification you can do this by typing in the shell: 
     16{{{ 
     17git config --global http.sslVerify false 
     18}}} 
     19 
     20If you prefer to disable SSL at system level, you can do: 
     21{{{ 
     22sudo git config --system http.sslVerify false 
     23}}} 
     24 
    825 
    926To sync your local copy with the server: