]> git.ipfire.org Git - thirdparty/git.git/commitdiff
contrib/git-resurrect.sh: indent with tabs
authorDenton Liu <liu.denton@gmail.com>
Thu, 8 Oct 2020 06:44:39 +0000 (23:44 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 8 Oct 2020 18:48:53 +0000 (11:48 -0700)
In the git-resurrect script, there are a few lines that are mistakenly
indented with spaces. Replace these lines with tabs.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/git-resurrect.sh

index 8c171dd959f69501706c565218665ef474252d43..57a77c03f982dd10a6d4e8ddc923253c73441334 100755 (executable)
@@ -27,7 +27,7 @@ n,dry-run            don't recreate the branch"
 
 search_reflog () {
        sed -ne 's~^\([^ ]*\) .*        checkout: moving from '"$1"' .*~\1~p' \
-                < "$GIT_DIR"/logs/HEAD
+               < "$GIT_DIR"/logs/HEAD
 }
 
 search_reflog_merges () {
@@ -41,9 +41,9 @@ _x40="[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]"
 _x40="$_x40$_x40$_x40$_x40$_x40$_x40$_x40$_x40"
 
 search_merges () {
-        git rev-list --all --grep="Merge branch '$1'" \
-                --pretty=tformat:"%P %s" |
-        sed -ne "/^$_x40 \($_x40\) Merge .*/ {s//\1/p;$early_exit}"
+       git rev-list --all --grep="Merge branch '$1'" \
+               --pretty=tformat:"%P %s" |
+       sed -ne "/^$_x40 \($_x40\) Merge .*/ {s//\1/p;$early_exit}"
 }
 
 search_merge_targets () {