博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GitLab(2)——Idea 本地项目上传到GitLab
阅读量:4963 次
发布时间:2019-06-12

本文共 1588 字,大约阅读时间需要 5 分钟。

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

 

 

 

 

转载于:https://www.cnblogs.com/xushuyi/articles/6692051.html

你可能感兴趣的文章
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>