Browse Source

isgitrepo : return 0 if in git repo, 128 otherwise

Jovian (Darkside) 6 years ago
parent
commit
ca008a0ec8
1 changed files with 5 additions and 0 deletions
  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