📌  相关文章
📜  更改分支 git - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:29.050000             🧑  作者: Mango

代码示例6
- git checkout xyz =
                checks out the branch, switches to the branch.
- git checkout -b  =
                creates a new branch and switches to it.
- git merge  =
                this command takes changes from the given branch,
                and merges with the current branches we are on.