Philip Meyer wrote: > With Git, it pulls the whole repository including all historic changes > and branch info down locally. My .git folder is 586MB! Unless I'm > mistaken, there's no way to fetch from a remote repository - I have to > pull down the whole repository locally?Phil
If you: git clone -n --depth 1 https://github.com/Logitech/slimserver.git destrepo ..that gets just the latest commits, not the whole history. It will cut the size of the local repo in half. ------------------------------------------------------------------------ gharris999's Profile: http://forums.slimdevices.com/member.php?userid=115 View this thread: http://forums.slimdevices.com/showthread.php?t=95917 _______________________________________________ beta mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/beta
