Last active
November 2, 2017 09:54
Revisions
-
Kris Urbas revised this gist
Nov 2, 2017 . 1 changed file with 4 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 @@ -8,4 +8,7 @@ git branch -avv | grep "release-2014" | awk '{ gsub(/remotes\/origin\//, ""); p git branch -a --merged | egrep -v "(^\*|master|dev)" | awk '{ gsub(/remotes\/origin\//, ""); print $1 }' | xargs -n 1 git push origin --delete # by commit date git branch -a --sort=committerdate | head -n 20 | awk '{ gsub(/remotes\/origin\//, ""); print $1 }' # commits in certain dates by certain people git log --after="2017-10-25 00:00" --before="2017-10-27 00:00" --pretty=format:'%h%x09%an%x09%ad%x09%s' | grep -e 'Kris' -e 'Olexiy' -e 'Akbar' -
Kris Urbas created this gist
Oct 25, 2017 .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,11 @@ # for local branches git branch -avv | grep "release-2014" | awk '{ print $1 }' | xargs -n 1 git branch -D # by branch name pattern git branch -avv | grep "release-2014" | awk '{ gsub(/remotes\/origin\//, ""); print $1 }' | xargs -n 1 git push origin --delete # merged to master git branch -a --merged | egrep -v "(^\*|master|dev)" | awk '{ gsub(/remotes\/origin\//, ""); print $1 }' | xargs -n 1 git push origin --delete # by commit date git branch -a --sort=committerdate | head -n 20 | awk '{ gsub(/remotes\/origin\//, ""); print $1 }'