A git clone is set up to support pushing/pulling back into the original repository. How do I use git-remote (and/or other commands, configuration files, etc.) to change the two repositories such that the original will now act like the clone, pushing and pulling into it by default, and the clone will now act as the original, with no knowledge of the clone?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Issue these commands on what used to be the remote:
Then on the old clone:
|
|||
|
|
|
You just have to edit the .git/config file in both repository and change the "url" of remote "origin" You can therefor use the git-config command (see the man for options) in order to change global option for a git repository. |
||||
|
|