gharris999 wrote: > can you post a git_ignore file that shows examples of ignoring specific > arches?
Format of gitignore can be found 'here' (https://www.kernel.org/pub/software/scm/git/docs/gitignore.html). To ignore e.g. perl 5.14 modules: Code: -------------------- CPAN/arch/5.14/**/* -------------------- Note that after the initial checkout all files will be tracked, so you'll have to remove the arch files using git rm (see the NOTES section of the gitignore docs) btw, the --depth option implies the -single-branch option according to the man page (I'm using git version 1.8.1.5) [ extGUI4LMS - an alternative web interface: 'forum' (http://forums.slimdevices.com/showthread.php?98186-Announce-Alternative-Web-Interface-(beta)) / 'homepage' (http://code.google.com/p/extgui4lms/) ] ------------------------------------------------------------------------ Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808 View this thread: http://forums.slimdevices.com/showthread.php?t=99667 _______________________________________________ beta mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/beta
