Browse Source

Remove curgitb because already available in Git

Redundancy with `git describe`
DricomDragon 5 năm trước cách đây
mục cha
commit
84f0230d66
1 tập tin đã thay đổi với 0 bổ sung10 xóa
  1. 0 10
      CommonScripts/curgitb

+ 0 - 10
CommonScripts/curgitb

@@ -1,10 +0,0 @@
-#!/bin/bash
-current_branch=`git branch 2>&1`
-if [ "$current_branch" != 'fatal: not a git repository (or any of the parent directories): .git' ]
-then
-	current_branch=`echo "$current_branch" | grep \* | cut -d ' ' -f2`
-	echo "$current_branch"
-	exit 0
-else
-	exit 1
-fi