- Padded right/left margins to decrease line length based on research into general typographic standards. - Shrunk linespacing to decrease line-spacing to bring this in line with general typographic standards. - Added comments explaining the changes and basic typographic decisions. - Renamed some variables to make it more clear about the relationships between pagestyles. - Added the vc-git and vc-awk scripts into the repository so folks don't have to go hunting for them. - Made VC stuff generated by default in Makefile. - Increased the amount of sample text so we can actually see the effects on full pages of text.
25 lines
774 B
Bash
Executable File
25 lines
774 B
Bash
Executable File
#!/bin/sh
|
|
# This is file 'vc' from the vc bundle for TeX.
|
|
# The original file can be found at CTAN:support/vc.
|
|
# This file is Public Domain.
|
|
|
|
# Parse command line options.
|
|
full=0
|
|
mod=0
|
|
while [ -n "$(echo $1 | grep '-')" ]; do
|
|
case $1 in
|
|
-f ) full=1 ;;
|
|
-m ) mod=1 ;;
|
|
* ) echo 'usage: vc [-f] [-m]'
|
|
exit 1
|
|
esac
|
|
shift
|
|
done
|
|
# English locale.
|
|
LC_ALL=C
|
|
git --no-pager log -1 HEAD --pretty=format:"Hash: %H%nAbr. Hash: %h%nParent Hashes: %P%nAbr. Parent Hashes: %p%nAuthor Name: %an%nAuthor Email: %ae%nAuthor Date: %ai%nCommitter Name: %cn%nCommitter Email: %ce%nCommitter Date: %ci%n" |gawk -v script=log -v full=$full -f ~/bin/vc-git.awk > vc
|
|
if [ "$mod" = 1 ]
|
|
then
|
|
git status |gawk -v script=status -f ~/bin/vc-git.awk >> vc
|
|
fi
|