TerraLib and TerraView Wiki Page

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Last revision Both sides next revision
wiki:documentation:devguide:cloning [2017/07/11 10:41]
castejon [Getting the source code from compressed files]
wiki:documentation:devguide:cloning [2018/04/05 11:22]
marisa
Line 5: Line 5:
  
 **Note:** If you want to integrate code into the TerraLib Official Repository, please, see the document [[http://​www.dpi.inpe.br/​terralib5/​wiki/​doku.php?​id=wiki:​documentation:​devguide:​gitlab|Using GitLab]]. **Note:** If you want to integrate code into the TerraLib Official Repository, please, see the document [[http://​www.dpi.inpe.br/​terralib5/​wiki/​doku.php?​id=wiki:​documentation:​devguide:​gitlab|Using GitLab]].
 +
 +===== On Microsoft Windows using TortoiseGit or Git Bash =====
 +
 +**1. **Make a new folder to host TerraLib source code:
 +<code bash>
 +$ mkdir C:/​terralib/​codebase
 +$cd terralib/​codebase
 +</​code>​
 +
 +**2.** Make a local copy of TerraLib repository:
 +<code bash>
 +$ GIT_SSL_NO_VERIFY=true git clone https://​gitlab.dpi.inpe.br/​terralib/​terralib.git .
 +</​code>​
 +
 +**Note:** You can also set local configurations for GIT in order to disable the use of SSL certificates:​
 +<code bash>
 +$ git config http.sslVerify false
 +</​code>​
 +
 +**3.** After cloning, select the right [[:​wiki:​documentation:​devguide:​branches_and_tags|branch or tag]] to work on (develop, release-5.1,​ release-5.2,​...,​ release-5.x)
 +
 +
 ===== On Linux Systems ===== ===== On Linux Systems =====
  
Line 56: Line 78:
  
 **5.** After cloning, select the right [[:​wiki:​documentation:​devguide:​branches_and_tags|branch or tag]] to work on (develop, release-5.x,​ 5.0.x, 5.1.x) **5.** After cloning, select the right [[:​wiki:​documentation:​devguide:​branches_and_tags|branch or tag]] to work on (develop, release-5.x,​ 5.0.x, 5.1.x)
- 
-===== On Microsoft Windows using TortoiseGit or Git Bash ===== 
- 
-**1. **Make a new folder to host TerraLib source code: 
-<code bash> 
-$ mkdir C:/​terralib/​codebase 
-$cd terralib/​codebase 
-</​code>​ 
- 
-**2.** Make a local copy of TerraLib repository: 
-<code bash> 
-$ GIT_SSL_NO_VERIFY=true git clone https://​gitlab.dpi.inpe.br/​terralib/​terralib.git . 
-</​code>​ 
- 
-**Note:** You can also set local configurations for GIT in order to disable the use of SSL certificates:​ 
-<code bash> 
-$ git config http.sslVerify false 
-</​code>​ 
- 
-**3.** After cloning, select the right [[:​wiki:​documentation:​devguide:​branches_and_tags|branch or tag]] to work on (develop, release-5.1,​ release-5.2,​...,​ release-5.x) 
  
 ===== Getting the source code from compressed files ===== ===== Getting the source code from compressed files =====