Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用我已经部署到 heroku 并且当前正在运行的代码“刷新”我的本地代码库。
我做了一个
git pull heroku master
并收到一条消息说一切都是最新的。然后我尝试了
git checkout master
希望这会用 Heroku 上可用的内容覆盖我的本地代码副本。然而这并没有奏效。如何“获取”部署到 Heroku 的代码?
它只是一个 git 遥控器,就像其他任何东西一样。如果您希望本地 master 分支准确反映 heroku 中当前的内容(可能您的本地副本不正确地分歧),您可以
git fetch heroku git reset --hard heroku/master
在你的分支上做一个git checkout .,这将删除你所有的本地更改。
git checkout .
之后你不需要拉代码