Browse Source

isgitrepo : return 0 if in git repo, 128 otherwise

Jovian (Darkside) 6 năm trước cách đây
mục cha
commit
ca008a0ec8
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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