Reputation: 55
When we performed a "git add" the date of file was changed to current date.
Upvotes: 0
Views: 33
Reputation: 142114
git
does not track time stamps and it does not change your file timesatmp when you add it to the stage area.
Here is a live demo to show you that git does not care about dates. git only track content and in some cases file mode (chmod)
Upvotes: 1