User Tools

Site Tools


git

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
git [2014/09/02 17:31] admingit [2014/09/02 18:09] – [Create a Submodule] admin
Line 44: Line 44:
  
  
-====== Git Submodules ======+====== Git Submodules (sub repository) ======
  
 +===== Create a Submodule =====
 +
 +To link one repository into another in git you can use a thing called submodules:
 +
 +  git submodule add http://YOUR.PATH/TO/GIT/REPO FOLDER_NAME
 +
 +Example:
 +
 +  cd /YOUR/CLONED/REPO
   git submodule add https://redmine.knallimall.org/git/imagemap/ dokuwiki_imagemap   git submodule add https://redmine.knallimall.org/git/imagemap/ dokuwiki_imagemap
   git add .   git add .
   git commit -m "Add submodules ..."   git commit -m "Add submodules ..."
-  +  git push origin master 
 + 
 +===== Clone a Repo containing submodules/ ===== 
 + 
 +Submodules need to be initialized and downloaded 
 + 
 +  cd /YOUR/CLONED/REPO 
 +  git submodule init 
 +  git submodule update 
 + 
 + 
 +===== Update a submodules repo ===== 
 + 
 +When updating a submodule its required to tell the parent repository to use the latest downloaded version. 
 + 
 +  cd /YOUR/CLONED/REPO/SUBMODULE/ 
 +  git pull origin master 
 +  cd /YOUR/CLONED/REPO 
 +  git commit -am "Upgrade submodules ..." 
 +  git push origin
git.txt · Last modified: 2021/01/19 23:58 by admin