Last active
March 16, 2020 09:24
-
-
Save Gazzell/315e314b7efcebb0819a52e1851d2415 to your computer and use it in GitHub Desktop.
Revisions
-
Gazzell revised this gist
Mar 16, 2020 . 1 changed file with 5 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,2 +1,6 @@ # delete node_modules for in all projects (dirs) find ./ -name "node_modules" -maxdepth 2 -exec rm -rf {} \; ##GIT #remove all merged local branches git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d -
Gazzell created this gist
Aug 27, 2019 .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,2 @@ # delete node_modules for in all projects (dirs) find ./ -name "node_modules" -maxdepth 2 -exec rm -rf {} \;