Przeglądaj źródła

git: ignore detached heads in checkout hook

Thomas Dy 1 rok temu
rodzic
commit
231c18e221
1 zmienionych plików z 5 dodań i 0 usunięć
  1. 5 0
      .config/git/hooks/post-checkout

+ 5 - 0
.config/git/hooks/post-checkout

@@ -1,5 +1,10 @@
 #!/usr/bin/env bash
 
+# ignore detached heads
+if ! git symbolic-ref -q HEAD > /dev/null; then
+  exit
+fi
+
 # ignore non-branch checkouts
 if [[ "$3" != "1" ]]; then
   exit