Fix license issues
[sdnc/oam.git] / dgbuilder / git_scripts / gitcheckout
diff --git a/dgbuilder/git_scripts/gitcheckout b/dgbuilder/git_scripts/gitcheckout
deleted file mode 100755 (executable)
index ca01dd7..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-if [ "$#" != "2" ]
-then
-       echo "Usage $0 gitLocalRepositoryDir branch"
-       exit
-fi
-branch=$2
-localGitRepository=$1
-cd $localGitRepository
-if [ -e "$localGitRepository" ]
-then
-       git checkout $branch
-       echo
-       echo -n  "Now on Branch:"
-       git rev-parse --abbrev-ref HEAD
-else
-       echo Git Local repository not set
-fi