Initial commit for OpenECOMP SDN-C OA&M

Change-Id: I7ab579fd0d206bf356f36d52dcdf4f71f1fa2680
Signed-off-by: Timoney, Daniel (dt5972) <dtimoney@att.com>

Former-commit-id: 2a9f0edd09581f907e62ec4689b5ac94dd5382ba
diff --git a/dgbuilder/git_scripts/gitcheckout b/dgbuilder/git_scripts/gitcheckout
new file mode 100755
index 0000000..ca01dd7
--- /dev/null
+++ b/dgbuilder/git_scripts/gitcheckout
@@ -0,0 +1,17 @@
+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
diff --git a/dgbuilder/git_scripts/gitckout b/dgbuilder/git_scripts/gitckout
new file mode 100755
index 0000000..3db9db8
--- /dev/null
+++ b/dgbuilder/git_scripts/gitckout
@@ -0,0 +1,15 @@
+if [ "$#" != "2" ]
+then
+	echo "Usage $0 commitId full_path_to_the_source_file"
+	exit
+fi
+fileName=$(basename $2)
+dirName=$(dirname $2)
+commitId=$1
+cd $dirName
+if [ -e "$2" ]
+then
+	rm $2 2>/dev/null
+fi
+git checkout $commitId $fileName
+cat $fileName
diff --git a/dgbuilder/git_scripts/gitcurbranch b/dgbuilder/git_scripts/gitcurbranch
new file mode 100755
index 0000000..5a82e48
--- /dev/null
+++ b/dgbuilder/git_scripts/gitcurbranch
@@ -0,0 +1,13 @@
+if [ "$#" != "1" ]
+then
+	echo "Usage $0 gitLocalRepositoryDir"
+	exit
+fi
+localGitRepository=$1
+cd $localGitRepository
+if [ -e "$localGitRepository" ]
+then
+	git rev-parse --abbrev-ref HEAD
+else
+	echo Git Local repository not set
+fi
diff --git a/dgbuilder/git_scripts/gitlog b/dgbuilder/git_scripts/gitlog
new file mode 100755
index 0000000..fd8cd37
--- /dev/null
+++ b/dgbuilder/git_scripts/gitlog
@@ -0,0 +1,18 @@
+if [ "$#" != "1" ]
+then
+	echo "Usage $0 full_path_to_the_source_file"
+	exit
+fi
+fileName=$(basename $1)
+dirName=$(dirname $1)
+cd $dirName
+glog=$(git log --pretty=format:'%H %cD %an %s' -n 25 ${fileName}|awk ' ORS=" "{print \
+"\n{\n" \
+"\"commit\": \"" $1 "\",\n" \
+"\"date\": \""$2 " "$3" "$4" "$5 " "$6 "\",\n" \
+"\"author\": \"" $8 ", "$9 "\",\n" \
+"\"comment\": \""} { s = ""; for (i = 10; i <= NF; i++) s = s $i " "; print s } { print  "\"\n},"}')
+echo "["
+update_glog=$(echo $glog|sed -e 's/,$//g')
+echo $update_glog
+echo "]"
diff --git a/dgbuilder/git_scripts/gitpull b/dgbuilder/git_scripts/gitpull
new file mode 100755
index 0000000..8d475ad
--- /dev/null
+++ b/dgbuilder/git_scripts/gitpull
@@ -0,0 +1,7 @@
+if [ "$#" != "1" ]
+then
+	echo "Usage $0 full_path_to_local_repository"
+	exit
+fi
+cd $1
+git pull
diff --git a/dgbuilder/git_scripts/gitstatus b/dgbuilder/git_scripts/gitstatus
new file mode 100755
index 0000000..9b24ea7
--- /dev/null
+++ b/dgbuilder/git_scripts/gitstatus
@@ -0,0 +1,7 @@
+if [ "$#" != "1" ]
+then
+	echo "Usage $0 full_path_to_local_repository"
+	exit
+fi
+cd $1
+git status