(如果想看eclipse拉取git项目,移步到我上一篇文章)以下步骤是eclipse运用git的切换分支,拉取合并代码的基本操作: 1.切换远程分支:鼠标右键项目--team--switch to -- other后,就出现如下图: 选择 check out as new local branch(意思就是作为一个新分支check下来) 2.切换本地分支:在第一点中选择“local”文件夹下的即可,也就是你的本地分支 3.拉取git远程代码:右键项目--选择“Fetch from upstrea
问题描述从远程git上拉取某一个分支,然后报错,拉取不了这个分支. 拉取分支的命令: git checkout -b xxx-static-19 origin/xxx-static-19 其中xxx-static-19是分支名. 报错 fatal: 'origin/xxx-static-19' is not a commit and a branch 'xxx-static-19' cannot be created from it 解决重新拉取数据,git pull ,然后再切回分支