On 6 nov 2012, at 16:44, GitHub <[email protected]> wrote: > Branch: refs/heads/master > Home: https://github.com/D-Programming-Language/dmd > Commit: 10640a73130a7d6802d1e72da9e3b45af065f512 > > https://github.com/D-Programming-Language/dmd/commit/10640a73130a7d6802d1e72da9e3b45af065f512 > Author: Walter Bright <[email protected]> > Date: 2012-11-06 (Tue, 06 Nov 2012) > > Changed paths: > M src/backend/cv8.c > > Log Message: > ----------- > dang, forgot that one, too
I don't know how your workflow with git is. But I usually just make the changes I want and then commit them with this command: $ git commit -a -m "Message" The "-a" flag will include all changes in all files tracked by git. It won't add any new files. -- /Jacob Carlborg _______________________________________________ dmd-internals mailing list [email protected] http://lists.puremagic.com/mailman/listinfo/dmd-internals
