Ver código fonte

isgitrepo : return 0 if in git repo, 128 otherwise

Jovian (Darkside) 6 anos atrás
pai
commit
ca008a0ec8
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5 0
      Useful/isgitrepo

+ 5 - 0
Useful/isgitrepo

@@ -0,0 +1,5 @@
+#!/bin/bash
+# Return 0 if you are in a git repo
+# Return 1 otherwise
+
+git rev-parse --is-inside-work-tree > /dev/null 2>&1