Post date: Nov 16, 2017 12:8:3 AM
$ git checkout -b test
. . . do the test code
$ git add -A
$ git commit -m "summarize"
$ git checkout masterÂ
$ git pull origin master <- optional, for multiple developers
$ git merge test
$ git push origin master