git snippets
alises
gitql
colored and full alternative to git log --oneline
alias gitql="git log --pretty=format:"%C(yellow)%h%C(reset) %C(green)%ad%C(reset) %C(blue)%an%C(reset): %s" --date=short"check people
git log --format='%aN <%aE>' | sort -ucheck update changes in some path
to get info on specific files in a certain directory (version number):
git diff <old_commit>..HEAD -- <directory> -- *<suffix>
git diff abc123..HEAD -- /subjects/path/version/ -- *.pl.md
or across versions (with main pill directory and CCC to track moved files)
git diff -C -C -C <old_commit>..HEAD -- <directory> -- *<suffix>difference between words added and removed
added
removed
by type of change of file
check new PL changes
fetch all repos
Last updated