aboutsummaryrefslogtreecommitdiffstats
path: root/dgbuilder/git_scripts/gitlog
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2018-11-06 14:15:05 -0500
committerTimoney, Dan (dt5972) <dtimoney@att.com>2018-11-06 14:16:18 -0500
commitd9642fafddbaa28789339e1989c4583af003a193 (patch)
tree0442af1ba4e793433fac5871dd8e69c98a056446 /dgbuilder/git_scripts/gitlog
parent33d814f236d4c3e4246851c810bdbbab5090abbb (diff)
Fix license issues
Fix license definition in package.json files Remove obsolete dgbuilder from SDNC (dgbuilder now in CCSDK) Change-Id: Iee0bf9468f081c5957eae2e873efbea6fb6be354 Issue-ID: SDNC-489 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com> Former-commit-id: 4e104ac4183dd46124753c4571939e765a124508
Diffstat (limited to 'dgbuilder/git_scripts/gitlog')
-rwxr-xr-xdgbuilder/git_scripts/gitlog18
1 files changed, 0 insertions, 18 deletions
diff --git a/dgbuilder/git_scripts/gitlog b/dgbuilder/git_scripts/gitlog
deleted file mode 100755
index fd8cd379..00000000
--- a/dgbuilder/git_scripts/gitlog
+++ /dev/null
@@ -1,18 +0,0 @@
-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 "]"