Reputation: 4500
I'm using TortoiseGit on Windows, and I'm wondering how can I set it up so that it always adds the commit author and date.
In other terms, could these two checkboxes be on by default ?
I'm sort of new to git, so maybe someone will tell me that this is useless or not recommended.
Upvotes: 13
Views: 3796
Reputation: 51935
The commit and author date and name are always set whenever you commit (this is a Git requirement); they default to "now" and whatever you set your committer identity to.
Those checkboxes are only relevant if you:
Upvotes: 24