Changes

Line 30: Line 30:  
<source lang="ini">
 
<source lang="ini">
 
git://github.com/Dolibarr/dolibarr.git (read only)
 
git://github.com/Dolibarr/dolibarr.git (read only)
or
+
or if you created a fork of dolibarr github from github web interface
git@github.com:Dolibarr/dolibarr.git (read and write access)
+
git@github.com:yourgitaccount/dolibarr.git (read and write access)
 
</source>
 
</source>
 
Your Eclipse GIT client will ask you to choose the branches you are interesting in. Branches not selected now could be selected later by doing a "Fetch" from the "Remotes" view, but try to choose only the branch you need. This will save you time and problems later.
 
Your Eclipse GIT client will ask you to choose the branches you are interesting in. Branches not selected now could be selected later by doing a "Fetch" from the "Remotes" view, but try to choose only the branch you need. This will save you time and problems later.
Line 37: Line 37:  
Note: if you are behind a firewall, you must set Eclipse proxy credentials into Eclipse menu Windows - Preferences - General - Network connection and use the alternative URL:
 
Note: if you are behind a firewall, you must set Eclipse proxy credentials into Eclipse menu Windows - Preferences - General - Network connection and use the alternative URL:
 
<source lang="ini">
 
<source lang="ini">
https://gitlogin:gitpassword@github.com/Dolibarr/dolibarr.git
+
https://gitlogin:gitpassword@github.com/yourgitaccount/dolibarr.git
 
</source>
 
</source>
   Line 49: Line 49:  
Then clone repository locally:
 
Then clone repository locally:
 
<source lang="bash">
 
<source lang="bash">
git clone git://github.com/Dolibarr/dolibarr.git dolibarr
+
git://github.com/Dolibarr/dolibarr.git (read only)
 +
or if you created a fork of dolibarr github from github web interface
 +
git@github.com:yourgitaccount/dolibarr.git (read and write access)
 
</source>
 
</source>
   Line 55: Line 57:  
<source lang="bash">
 
<source lang="bash">
 
git config --global http.proxy http://proxyuser:proxypass@proxyserver:proxyport
 
git config --global http.proxy http://proxyuser:proxypass@proxyserver:proxyport
git clone https://gitlogin:gitpassword@github.com/Dolibarr/dolibarr.git dolibarr
+
git clone https://gitlogin:gitpassword@github.com/yourgitaccount/dolibarr.git dolibarr
 
</source>
 
</source>