- BASICS
- States
- Ignore
- Remove
- Reset
- Restore
- BRANCH
-
Create Branch
- Merge Branch
- Force Merge
- Undo Merge
- Php Branch
- Diff
- UNDO
- Push Force
- Exclude Files
- GITHUB
- Hooks
- Repository
- Authentication
Create
This only creates a branch, it doesn't switch to that branch.
git branch testing
Create a branch and switch to it.
git checkout -b dev
// create a branch and switch to it
git checkout master
Last update: 533 days ago