I have a .gitignore file like the following:
.*
!.gitignore
And I would like to version my .git/config
file such that when I do a git pull
my .git/config file updates automatically.
How can I do this?
I tried something like:
.*
!.gitignore
!.git/config
But this didn't work. I know if I create a link (ln -s .git/config configurations/git/config
) I can version it, but I would like a better way to update the original one automatically.
I'm thinking of creating a hard link to it (ln .git/config configurations/git/config configuration/git
), but it doesn't appear to be the best way. Is there a way to avoid this? Will Git work properly when versioning hard links?
Edit: explaining why to do this
The main motivation to do this is that I would like to version the home folder of a user of mine. I will use this versioning to help me on some kind of deploys. I'd like to keep all clones synchronized. Conflicts will appear just if I don't manage the things well, and I'll be taking care of this. Maybe I will be versioning another protected git files too.