Last active
October 2, 2017 05:39
-
-
Save tapsboy/28c12d49b966fcee30bb26f59533beb7 to your computer and use it in GitHub Desktop.
Revisions
-
tapsboy revised this gist
Oct 2, 2017 . No changes.There are no files selected for viewing
-
tapsboy revised this gist
Oct 2, 2017 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,5 +3,7 @@ git filter-branch -f --tree-filter ‘rm -rf nodemodules' -- --all git filter-branch -f --index-filter ‘git rm —cached —ignore-unmatch nodemodules' -- --all git filter-branch -f —prune-empty -- --all git config --global rerere.enabled true git add -p -
tapsboy revised this gist
Oct 2, 2017 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,7 @@ git filter-branch -f --tree-filter ‘rm -rf nodemodules' -- --all git filter-branch -f --index-filter ‘git rm —cached —ignore-unmatch nodemodules' -- --all git filter-branch -f —prune-empty -- --all git config --global rerere.enabled true git add -p -
tapsboy revised this gist
Oct 2, 2017 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ git filter-branch -f --tree-filter ‘rm -rf nodemodules' -- --all git filter-branch -f --index-filter ‘git rm —cached —ignore-unmatch nodemodules' -- --all git filter-branch -f —prune-empty -- --all -
tapsboy revised this gist
Oct 2, 2017 . 2 changed files with 6 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1 +0,0 @@ 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ Git cleanup: Check If node_modules can be removed from history git filter-branch -f --tree-filter ‘rm -rf nodemodules' -- --all git filter-branch -f --index-filter ‘git rm —cached —ignore-unmatch nodemodules' -- --all git filter-branch -f —prune-empty -- --all git config --global rerere.enabled true git add -p -
tapsboy revised this gist
Oct 2, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ _ -
tapsboy created this gist
Sep 15, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ Git Status of all repos: find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git status)' ';' Git Config for all repos: find . -maxdepth 1 -type d -exec sh -c '(cd {} && cat .git/config)' ';' Git checkout branchname for all repos: find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git checkout branchname)' ';' Git list branches alpha for all repos: find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git branch)' ';'