Quellcode durchsuchen

git: ignore detached heads in checkout hook

Thomas Dy vor 1 Jahr
Ursprung
Commit
231c18e221
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen
  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