Changes between Version 2 and Version 3 of GitSetup


Ignore:
Timestamp:
2011-09-18 12:33:26 (13 years ago)
Author:
edy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitSetup

    v2 v3  
    5050        $ git config --global user.email "your_email@youremail.com" 
    5151 
    52  
    53  
    5452#### Cloning a repository using SSH 
    5553 
     
    6058        $ git remote set-url origin ssh://git@projects.edy.es/edy/vehicle-physics.git 
    6159 
     60## Configuring a repository cloned from Codaset to use the new location 
     61 
     62___Windows:___ Right-click the project's folder and select "Git Bash here" from the pop-up menu.   
     63___Mac OSX:___ Open a Terminal window, then _cd_ to the project's directory. 
     64 
     65Http (prompts for user and password on each remote access): 
     66 
     67        $ git remote set-url origin http://projects.edy.es/git/edy/vehicle-physics.git 
     68 
     69SSH (requires configuring a SSH key, see above): 
     70 
     71        $ git remote set-url origin ssh://git@projects.edy.es/edy/vehicle-physics.git 
    6272 
    6373