1、选择VCS->Import into Version Control->Create Git
2、现将项目提交到本地环境仓库
选择 Commit 就是提交到本地仓库环境,选择Commit and Push 就是先自动提交到本地,然后提交到远程git环境
3、第一次将项目分享到远程git仓库,操作如下:
可以手动的选择是提交到那个分支上,比如将目前dev分支最新代码 提交到master分支,在这个操作需要选择master分支,就实现了将Dev分支的最新代码提交到了master分支了。
如果出现 类似: master->Empty repository
则证明你本地分支并没有和远程分支建立起关系,需要配置 remote
有两种方式配置remote
1. VCS->Git->Remotes 添加对应的 远程git地址
2. 通过terminal 命令来建立起关系:
git remote add origin git@10.28.37.56:xushuyi/idong_ios.git
4、完成本地新建分支,并上传至远程服务器git上之后,当再次pull的时候,会报:git branch --set-upstream 问题
出现这种问题,就是因为本地分支和远程分支没有建立起管理关系,具体操作如下:
You asked me to pull without telling me which branch you want to merge with, and 'branch.production.merge' in your configuration file does not tell me, either. Please specify which branch you want to use on the command line and try again (e.g. 'git pull'). See git-pull(1) for details. If you often merge with the same branch, you may want to use something like the following in your configuration file: [branch "debug"] remote = merge = [remote " "] url = fetch = See git-config(1) for details.
问题解析: git本地新建一个分支后,必须要做远程分支关联。如果没有关联,git会在下面的操作中提示你显示的添加关联。关联目的是如果在本地分支下操作: git pull, git push ,
不需要指定在命令行指定远程的分支.推送到远程分支后,你只要没有显示指定,git pull的时候,就会提示你。
解决方法:
使用命令git branch --set-upstream ;实例如下,其中debug为创建的分支
git branch --set-upstream debug origin/debug