Last active
August 29, 2015 14:04
-
-
Save dperaltab/1d5e9ac6ca6e4c8c07d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUBMODULOS GIT (comandos básicos) | |
$ git submodule add [email protected]:djperalta/cook_list.git aaa/bbb/ccc | |
$ git status | |
$ cat .gitmodules | |
$ git submodule init (inicializa submodulo) | |
$ git submodule update (actualiza los nuevos modulo) | |
Para ver si se crearon nuevos modulos hacemos un pull en el repo principal | |
y luego actualizamos con un: | |
$ git submodule update (descarga todos los archivos) | |
Enlace Ref. http://chrisjean.com/2009/04/20/git-submodules-adding-using-removing-and-updating/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment