我正在尝试在我的本地机器上添加第二个本地仓库。所以我创建了一个目录,在git init
那里做了一个然后我跑了:git remote add new_repo /path/.git
然后从我的本地仓库中,我跑了git push -u mybranch
,知道这是我推送的工作分支,然后我得到了错误:
No refs in common and none specified; doing nothing.
Perhaps you should specify a branch such as 'master'.
我怎样才能成功地将我的东西推送到第二个 repo 上?