mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
git: add git branch
filters notes
This commit is contained in:
parent
bc0d978aa7
commit
e80a7bf86b
1 changed files with 2 additions and 1 deletions
|
@ -194,7 +194,8 @@ It's generally recommended creating annotated tags so it's possible to have all
|
|||
### Branching And Merging
|
||||
|
||||
`git branch`: shows branches
|
||||
`git branch -v`: show branch + last commit
|
||||
`git branch -vv`: show branch + last commit + remote status
|
||||
`git branch --merged [--remote]`: show branches (remote) that have been merged into current one (needs same history, merge squash/rebase break history)
|
||||
|
||||
`git branch <branch-name>`: create new branch
|
||||
`git checkout -b <branch-name>`: create a branch and switches to it, same as `git branch <name>; git checkout <name>`
|
||||
|
|
Loading…
Add table
Reference in a new issue