Viewing full version tree in git

if you happen to not have a graphical interface available you can also print out the commit graph on the command line: git log –oneline –graph –decorate –all if this command complains with an invalid option –oneline, use: git log –pretty=oneline –graph –decorate –all

Git hangs while writing objects

I followed VonC’s advice: git config –global http.postBuffer 524288000 For future references, based on comments: 500 MB: 524288000 (as posted in the original answer) 1 GB: 1048576000 2 GB: 2097152000 (anything higher is rejected as ‘out of range’)