git 常用命令 入门

提交

git commit

创建分支

git branch  自定义分支名

注:创建完分支之后并不会自动切换。如果要使用分支需要切换分支

切换分支

git checkout 已经创建的分支名

创建并切换分支快捷方式

git checkout -b 自定义分支名

分支合并

首先要弄清楚自己在哪个分支上, 假要将B分支合并到A分支上。
要切换到A分支

git checkout A
git merge B

此时分支在A上

rebase合并分支

语意: 以当前分支为基准对分支进行合并
假设有master 和bugFix分支 ,我们要将bugFix中的代码合并到master中。

切换分支
git checkout bugFix
将bugFix继承master
git rebase master   
切换分支 
git checkout master 
将master也继承bugfix,实际上就是把master和bugfix的分支位置放到了一起。此时当前分支为master
git rebase bugFix

和远程仓库建立连接

git remote add origin https://gitee.com/budongfeng/xiaoguoketang.git
git push -u origin master

你可能感兴趣的:(git)