Reputation: 116
I accidentally deleted my .gitconfig file on my window system from folder c:/documents and settings/username/.gitconfig, but my git is working fine yet, so what kind of loss i can have ?actually i was looking to change git bash vim settings so what can be solution is this case ?
Upvotes: 1
Views: 3866
Reputation: 81052
You will have lost any (global) git configuration you have done.
Anything configured in a repo-specific (.git/config
) file will be fine.
Upvotes: 5