当你使用git进行生产时如何从分段中拉出分支?

时间:2017-03-10 16:33:58

标签: git github

所以在使用以下方法切换并从生产分支中提取最新信息后

git checkout production and then 
git pull origin production 

我使用

切换到分支功能/幻灯片
git checkout feature/slides

我知道这很愚蠢,但如何从远程登台存储库中的功能/幻灯片中提取最新内容?我试过了

git pull origin feature/slides

但这似乎并没有在本地环境中更新代码或做任何事情。

1 个答案:

答案 0 :(得分:3)

您需要将staging配置为本地存储库中的远程。您可以使用git remote命令执行此操作:

git remote add staging <remote URL>

现在,您可以像git pull一样使用此git pushorigin命令使用此遥控器:

git pull staging feature/slides