markdown 混帐

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 混帐相关的知识,希望对你有一定的参考价值。

# Branch
### Create
create a new branch and switch to it.\
`git checkout -b branch-name`

This is shortcut for:\
`git branch branch-name`
`git checkout branch-name`

---

### Checkout
Switch between diffrent branches.
> It’s best to have a clean working state when you switch branches.

`git checkout branch-name`

---

### Merge
Merge a branch into another branch.\
`git checkout master`\
`git merge branch-name-tobe-merged`

---

### Delete
Delete an existing branch.\
`git branch -d branch-name`

以上是关于markdown 混帐的主要内容,如果未能解决你的问题,请参考以下文章

markdown 混帐

markdown 混帐

markdown 混帐

markdown 混帐

markdown 混帐

markdown 混帐