Mark Harrison
Mark Harrison

Reputation: 304484

Tracking changes to my Git configuration?

Is there a canonical way to track changes to my git configuration?

Context: A coworker and I are comparing our various git settings, both global and per-repo, and we would like to see the various changes we have both made.

Upvotes: 4

Views: 93

Answers (1)

Jonathan.Brink
Jonathan.Brink

Reputation: 25393

You could store your Git (and other) configuration files in a dedicated Git repo and then symlink them to their usage locations.

This may be of interest: http://blog.smalleycreative.com/tutorials/using-git-and-github-to-manage-your-dotfiles/

Upvotes: 7

Related Questions