Reputation: 101
How to set a Git serverA and another Git serverB are synchronous? I need set 2 Git servers one is normal operation the anothers is backup. User can git clone serverA or serverB because their repository are the same.
or another backup git server method?
Upvotes: 1
Views: 102
Reputation: 9404
You may want to have a post-commit script on Server A that will push all the changes to Server B.
Upvotes: 1