I was wondering if anyone has ever set up a Git source control system with a ring topology (http://en.wikipedia.org/wiki/Ring_topology). I think this should work, but I was wondering if anyone has verified it.
Say I have a small company with 4 remote developers: Alex, Bob, Carrie, and Dan
Assume that each member of the team has a Git repository which we will be setup as
Alex repository with origin set to Bob
Bob repository with origin set to Carrie
Carrie repository with origin set to Dan
Dan repository with origin set to Alex
Since all commits are tracked by SHA1 hash, it seems that there should be no issues when things come back round the ring.
Just wondering if anyone has tested or experience with this type of setup?