Merge branch 'jc/bs-t-is-not-a-tab-for-sed'
authorJunio C Hamano <gitster@pobox.com>
Mon, 17 Apr 2017 06:29:28 +0000 (23:29 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Apr 2017 06:29:29 +0000 (23:29 -0700)
Code cleanup.

* jc/bs-t-is-not-a-tab-for-sed:
contrib/git-resurrect.sh: do not write \t for HT in sed scripts

1  2 
contrib/git-resurrect.sh
diff --combined contrib/git-resurrect.sh
index d7e97bbc76c27f61e83a5328831fd6889b22e662,3b78ffd079ee787c59901979148b7f1da98c026b..8c171dd959f69501706c565218665ef474252d43
@@@ -9,8 -9,6 +9,8 @@@ other/Merge <other> into <name> (respec
  is rather slow but allows you to resurrect other people's topic
  branches."
  
 +OPTIONS_KEEPDASHDASH=
 +OPTIONS_STUCKLONG=
  OPTIONS_SPEC="\
  git resurrect $USAGE
  --
@@@ -26,13 -24,13 +26,13 @@@ n,dry-run            don't recreate th
  . git-sh-setup
  
  search_reflog () {
-         sed -ne 's~^\([^ ]*\) .*\tcheckout: moving from '"$1"' .*~\1~p' \
+       sed -ne 's~^\([^ ]*\) .*        checkout: moving from '"$1"' .*~\1~p' \
                  < "$GIT_DIR"/logs/HEAD
  }
  
  search_reflog_merges () {
        git rev-parse $(
-               sed -ne 's~^[^ ]* \([^ ]*\) .*\tmerge '"$1"':.*~\1^2~p' \
+               sed -ne 's~^[^ ]* \([^ ]*\) .*  merge '"$1"':.*~\1^2~p' \
                        < "$GIT_DIR"/logs/HEAD
        )
  }