On 2 jun 2012, at 14:26, Jason House wrote: > It still puzzles me how reason #3 is so common. How is it that changes get > missed? Do you run "git status" when preparing commits and when preparing to > push your changes? I'm wondering if there are simple things like customizing > .gitignore or adding colors to the status output that could make #3 less > common.
I commit most of the times with $ git commit -a Which will add all changes to all files which git is already tracking. It won't add new files. I also have color enabled for diffs and status. This is how my .gitconfig looks like: http://pastebin.com/gcKmrwCi -- /Jacob Carlborg _______________________________________________ dmd-internals mailing list [email protected] http://lists.puremagic.com/mailman/listinfo/dmd-internals
