Skip to content

Instantly share code, notes, and snippets.

@krzysu
Last active November 2, 2017 09:54

Revisions

  1. Kris Urbas revised this gist Nov 2, 2017. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion gistfile1.txt
    Original 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 }'
    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'
  2. Kris Urbas created this gist Oct 25, 2017.
    11 changes: 11 additions & 0 deletions gistfile1.txt
    Original 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 }'