pub/scm/linux/kernel/git/markgross/scripts.git  about / heads / tags
python tools for working with kernel.
$ git log --pretty=format:'%h %s (%cs)%d'
2e9b6af First commit explaining what this project is about. (2013-09-08)
	(HEAD -> master)

$ git cat-file blob HEAD:README
This is a repo of assorted python scripts for:
* running compile time tests
* data mining changes
* machine leaning applied to the data in the git trees.
* random kernel source analysis / history / manipulation python code

# heads (aka `branches'):
$ git for-each-ref --sort=-creatordate refs/heads \
	--format='%(HEAD) %(refname:short) %(subject) (%(creatordate:short))'
* master       First commit explaining what this project is about. (2013-09-08)

# tags:
$ git for-each-ref --sort=-creatordate refs/tags \
	--format='%(refname:short) %(subject) (%(creatordate:short))'
# no tags, yet...

git clone https://80x24.org/lore/pub/scm/linux/kernel/git/markgross/scripts.git