Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,23 +1,23 @@
# git branch
> Main command for working with branches
> Main command for working with branches.
- List local branches. The current branch is highlighted by `*`.
- List local branches. The current branch is highlighted by `*`:
`git branch`
- List all local and remote branches
- List all local and remote branches:
`git branch -a`
- Create new branch based on current branch
- Create new branch based on current branch:
`git branch {{BRANCH-NAME}}`
- Delete a local branch
- Delete a local branch:
`git branch -d {{BRANCH-NAME}}`
- Move/Rename a branch
- Move/Rename a branch:
`git branch -m`