Git configuration options
1
Hi,
Is it possible to set git config options?
ie. I need to run: (git config –system receive.denyNonFastforwards true) on the repository.
asked September 17, 2012
2 Answers
2
accepted
Go to the GitStack\repositories\repo.git directory and there should be a "config" file there where the receive.denyNonFastforwards is set to true. You can change it to false and try to force a push again.
freelancer
37
1
I recommend to read this post about running git commands on a bare repository. GitStack repositories are stored as "bare repositories".
Your Answer
Please login to post questions.