Git

Useful Repos

https://github.com/arthaud/git-dumper

commands

Commits :

git show-branch
git log $branch

Revisions :

git rev-list --all
git rev-list --objects --all

View Diff :

git diff $blob

View Blob:

git cat-file -p $blob

Possibly fix broken repo:

git pull repo master

git config --global pack.windowMemory "100m"

git config --global pack.SizeLimit "100m"

git config --global pack.threads "1"

git config --global pack.window "0"

Last updated