Git 使用

一. IDEA 中 git 的使用

1.电脑上安装 Git 工具

https://git-scm.com/downloads/

2.idea 中安装 getee(码云) 插件

3.git 的一些操作命令

1
2
3
4
5
6
7
8
9
10
11
# 检出分支, 后面是分支名
git branch iss53 #创建分支
git checkout -b iss9527 #创建并切换 -b <branch> create and checkout a new branch
git checkout iss9527 # 切换分支

# 分支合并
➜ dmp git:(master) git merge iss9527

# 删除分支 (在 bug, 功能完成后, 并且合并完成后, 可以删除分支)
➜ dmp git:(master) git branch -d iss9527
Deleted branch iss9527 (was 240ba41).
如果帮到你, 可以给我赞助杯咖啡☕️
0%