I created a bare repo to publish my repository, but I can't figure out how to update the bare repo with the current state of the main repository.
|
|
If you want to duplicate all the objects from the main repo, do this inside the main repo:
Alternatively, do a fetch inside the bare repo:
You cannot do a pull, because a pull wants to merge with You can add these as remotes to save yourself some typing in the future:
Then you can simply do
or
depending on what repo you're in. If Disclaimer: I'm not a git guru. If I said something wrong, I'd like to be enlightened! Update: Read the comments! |
|||||||||||||||
|
|
I created a repository using the following command
Then I tried to update the bare clone using the answer by Thomas, but it didn't work for me. To get the bare repository to update (which is what I think Let_Me_Be was asking), I had to create a mirror repository:
Then I could run the following command in the mirrored repository to grab the main repository's updates:
I came across this solution by reading Mirror a Git Repository By Pulling |
|||
|
|
|
Add the bare repository as a remote repository, then use |
|||||||
|