Revisions
-
u840903 renamed this gist
May 7, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
u840903 renamed this gist
May 7, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
u840903 renamed this gist
May 7, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
u840903 renamed this gist
May 7, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
u840903 revised this gist
May 6, 2014 . 1 changed file with 11 additions and 0 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -26,4 +26,15 @@ git push cd ... git commit . -m "bumped canvasrunner" git push ``` ### Clone repositories with submodules ``` git clone --recursive ``` ### Pull submodule if you forgot to clone --recursive ``` cd components/canvasrunner git submodule update --init ``` -
u840903 revised this gist
Apr 24, 2014 . 1 changed file with 9 additions and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,29 @@ ### Add a submodule ``` git submodule add https://github.com/janjarfalk/canvasrunner.git components/canvasrunner/ ``` ### Update all submodules ``` git submodule foreach git pull origin master cd .. git commit . -m "Updated submodules" git push ``` ### Remove a submodule ``` git submodule deinit components/canvasrunner git rm components/canvasrunner ``` ### Edit a submodule ``` cd components/canvasrunner <edit> git commit . -m "Edited" git push cd ... git commit . -m "bumped canvasrunner" git push ``` -
u840903 revised this gist
Apr 24, 2014 . 1 changed file with 20 additions and 5 deletions.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,21 @@ ### Add a submodule git submodule add https://github.com/janjarfalk/canvasrunner.git components/canvasrunner/ ### Update all submodules git submodule foreach git pull origin master cd .. git commit . -m "Updated submodules" git push ### Remove a submodule git submodule deinit components/canvasrunner git rm components/canvasrunner ### Edit a submodule cd components/canvasrunner <edit> git commit . -m "Edited" git push cd ... git commit . -m "bumped canvasrunner" git push -
u840903 revised this gist
Apr 24, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ### Remove Submodule git submodule deinit <path> git rm <path> -
u840903 created this gist
Apr 24, 2014 .There are no files selected for viewing
This file contains 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ ## Remove Submodule git submodule deinit <path> git rm <path> git submodule deinit components/submodule git rm components/submodule