Moved header generation scripts to utils. Added astyle config.

This commit is contained in:
t-moe
2015-06-07 22:01:40 +02:00
parent c87220d192
commit 9b61534d27
3 changed files with 21 additions and 4 deletions

15
utils/genheader.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
echo "/**************************************************************************************************************************************"
echo "* Project: discoverpixy"
echo "* Authors: Aaron Schmocker, Timo Lang"
echo "* Institution: BFH Bern University of Applied Sciences"
echo "* File: $1"
echo "*"
echo "* Version History:"
echo "* Date Autor Email SHA Changes"
git log --pretty=format:"* %ad%x09%ae%x09%h%x09%s" --date=short --date-order --no-merges --reverse $1 | grep -v -i "fileheader"
echo "*"
echo "**************************************************************************************************************************************/"