Reputation: 12402
How can I make sure that my bare repo and my bitbucket repo are identical?
First thing I did was to look at the logs, but that may be not enough right?
Upvotes: 2
Views: 1019
Reputation: 26505
I would probably do it like this:
git init
git remote add bare $bareuri
git remote add bitb $bitbucketuri
git fetch --all
gitk --all
I would expect bare/master
point to the same commit as bitb/master
, etc.
Upvotes: 3