Web/00-前端工具/01-Git的使用.md

29 lines
294 B
Markdown
Raw Normal View History

2018-06-08 22:49:58 +08:00
## 日常操作积累
### 将 `branch1`的某个`commit1`合并到`branch2`当中
切换到branch2中然后执行如下命令
```
git cherry-pick commit1
```
## 推荐连接
### 2018-06
- [聊下git pull --rebase](https://www.cnblogs.com/wangiqngpei557/p/6056624.html)