# HG changeset patch # User Meredith Howard # Date 1468035632 14400 # Node ID a2510f8c18cbeebbdbe41e9098bfe3caa3afa2e0 # Parent 88a2e08ce673fecf4d19d65f79cbd5cea2056930 remove git-bre from dotfiles diff --git a/bin/git-bre b/bin/git-bre deleted file mode 100755 --- a/bin/git-bre +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -set -eu - -# git-bre: "branch edit", run $EDITOR with a list of all files touched in this -# branch compared to upstream. Any args are passed to the editor, before the -# file list. - -CHANGED=$( - git diff --name-only @{u}.. | while read file - do - printf "\'$file\' " - done -) - -eval "exec $EDITOR $@ ${CHANGED:?[No files to edit]}"