Changes
Page history
markusrowen created page: using git via the command line to branch and merge
authored
Oct 04, 2016
by
Markus Owen
Hide whitespace changes
Inline
Side-by-side
using-git-via-the-command-line-to-branch-and-merge.md
0 → 100644
View page @
93790225
This creates a branch named "osx-redirect" and checks it out.
```
ppmmro02:OpenSimRoot pmzmro$ git checkout -b osx-redirect
M OpenSimRoot/tests/engine/testEngine.sh
M OpenSimRoot/tests/modules/testModules.sh
Switched to a new branch 'osx-redirect'
ppmmro02:OpenSimRoot pmzmro$```
This is equivalent to "git branch osx-redirect" followed by "git checkout osx-redirect".