设置git clone以支持推/拉回原始存储库.我如何使用git-remote(和/或其他命令,配置文件等)更改两个存储库,以便原始文件现在将像克隆一样,默认情况下推送和拉入它,克隆现在将采取行动作为原始,不知道克隆?
对曾经是远程的东西发出这些命令:
% git remote add origin user@machine:/path/to/repo % git config branch.master.remote origin % git config branch.master.merge refs/heads/master % git pull
然后在旧克隆上:
% git remote rm origin