如何替换git存储库?

时间:2010-09-24 16:56:44

标签: git github repository

我创建了一个git存储库并用一些东西更新了它。后来我为这个项目创建了一个新目录,并为它初始化了新的git。现在我想推送更改并替换存储库中的旧内容。当我运行git push origin master时,我得到了

! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:Username/repo2.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again.  See the 'Note about
fast-forwards' section of 'git push --help' for details.

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:32)

你只需要用一点力量:

git push --force origin master

--force也可缩写为-f