On Wed, 2009-06-17 at 10:27 -0400, Ethan Swint wrote: > No problems with other apps - I'll pull from git head. I'm relatively > new to git - I just called 'git fetch' on a directory in which I > already had some older geda code.
Git fetch will retrieve from the remote computer, but doesn't update you local checkout. If you don't have any changes, you might try "git pull". (Which also implicitly does the fetch). If you have local changes, you might want: git fetch git rebase origin/master -- Peter Clifton Electrical Engineering Division, Engineering Department, University of Cambridge, 9, JJ Thomson Avenue, Cambridge CB3 0FA Tel: +44 (0)7729 980173 - (No signal in the lab!) _______________________________________________ geda-user mailing list [email protected] http://www.seul.org/cgi-bin/mailman/listinfo/geda-user

