博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git操作
阅读量:5152 次
发布时间:2019-06-13

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

git init

git clone /path/to/repository

 

your local repository consists of three "trees" maintained by git. the first one is your Working Directory which holds the actual files.

the second one is the Index which acts as a staging area and finally the HEAD which points to the last commit you've made.

 

git add <filename>

git commit -m "Commit message"

  Now the file is committed to the HEAD, but not in your remote repository yet.

git push origin master

  send those changes to your remote repository

Branches are used to develop features isolated from each other. The master branch is the "default" branch when you create a repository.

Use other branches for development and merge them back to the master branch upon completion.

 

git fetch

git branch

git checkout -b feature_x

git pull

  update your local repository to the newest commit

git merge branch2

  merge another branch into your active branch

===========================================================

merge时,切到你的开发分支,然后在merge别的分支。

Step 1. 执行fetch操作, 并将合并的目标分支检出到本地

git fetch origin

git checkout -b releases/branch origin/releases/branch111

Step 2. 使用版本号进行合并, 将出现的冲突一一解决, 并进行commit

git merge --no-ff xxxxxxx

 

--no-ff指的是强行关闭fast-forward方式。

fast-forward方式就是当条件允许的时候,git直接把HEAD指针指向合并分支的头,完成合并。属于“快进方式”,不过这种情况如果删除分支,则会丢失分支信息。因为在这个过程中没有创建commit

 --no-ff:不使用fast-forward方式合并,保留分支的commit历史

--squash:使用squash方式合并,把多次分支commit历史压缩为一次

 

如果遇到冲突,在idea中,可以比对冲突代码,解决后再push

Step 3. 将release分支push到gitlab上

git push origin releases/branch

 

参考文章

http://rogerdudler.github.io/git-guide/

转载于:https://www.cnblogs.com/parkdifferent/p/9588647.html

你可能感兴趣的文章
任务调度框架Quartz原理简介
查看>>
乌龟爬行问题
查看>>
vb6.0 快捷键
查看>>
201671010127 2016-2017-12 初学图形用户界面
查看>>
POJ-1061 青蛙的约会
查看>>
ZOJ-2836 Number Puzzle
查看>>
poj3463 Sightseeing(读题很重要)
查看>>
hdu6181 How Many Paths Are There(次短路条数[模板])
查看>>
python学习日记(常用模块)
查看>>
正则表达式和样式匹配
查看>>
8_分析一下JVM
查看>>
进程PCB
查看>>
用js来实现那些数据结构09(集合01-集合的实现)
查看>>
Sqlserver 2008 R2安装的盘符空间不够用的解决办法
查看>>
White Stripes UI 素材
查看>>
Java通过反射机制修改类中的私有属性的值
查看>>
1038 Recover the Smallest Number (30 分)
查看>>
网站系统开发需要掌握的技术
查看>>
Android提供两个常用的消息弹出框【Toast和Alert】
查看>>
使用SQL Server发送邮件时遇到的诡异事件
查看>>