# git branch -a
# git checkout -b development
(Creating New Branch) --> # git branch development
(Switching to New Branch) --> # git checkout development
# vi development.txt : “test of development branch”
# git add development.txt
# git commit -m “development test commit”
# git status
On branch development
nothing to commit, working tree clean
# git checkout master