Jacob Carlborg, el 12 de July a las 21:21 me escribiste: > I agree, I constantly use "git status" and "git diff". > > .git/info/exclude is used for ignoring private files that shouldn't be put > into .gitignore. > > Putting this in the git config (~/.gitconfig) : > > [color] > status = auto > > Will show modified and untracked files in red when using "git status". It > will show files added to the index in green. It's also possible to add colors > to the "diff" and "branch" commands: > > [color] > diff = auto > branch = auto > > Remote branches will show up in red and local will show up in green.
Even better: git config --global color.ui auto (to activate colors in all the commands, avoid messing with .gitconfig manually). -- Leandro Lucarella (AKA luca) http://llucax.com.ar/ ---------------------------------------------------------------------- GPG Key: 5F5A8D05 (F8CD F9A7 BF00 5431 4145 104C 949E BFB6 5F5A 8D05) ---------------------------------------------------------------------- Geckos can stick to any surface, with the exception of Teflon, which was specifically engineered to prevent even van der Waals adhesion. -- "Research into Gecko Adhesion", Berkeley, 2007-10-14 _______________________________________________ dmd-internals mailing list [email protected] http://lists.puremagic.com/mailman/listinfo/dmd-internals
