所以在使用以下方法切换并从生产分支中提取最新信息后
git checkout production and then
git pull origin production
我使用
切换到分支功能/幻灯片git checkout feature/slides
我知道这很愚蠢,但如何从远程登台存储库中的功能/幻灯片中提取最新内容?我试过了
git pull origin feature/slides
但这似乎并没有在本地环境中更新代码或做任何事情。
答案 0 :(得分:3)
您需要将staging
配置为本地存储库中的远程。您可以使用git remote
命令执行此操作:
git remote add staging <remote URL>
现在,您可以像git pull
一样使用此git push
和origin
命令使用此遥控器:
git pull staging feature/slides