original https://github.com/jp9000/obs-studio, now i want to fork it.
a) have master brance
here keep as it is just for pulling the latest
b) have nightly brance
here work daily
c) have final
here do clean
git clone https://github.com/jp9000/obs-studio
# this already makes the master branch
git remote show origin
git checkout -b nightly
git checkout -b final
NOTE: to delete git branch -d test
git checkout master
or
git checkout nightly
or
git checkout final
git push origin nightly
git pull
git merge <branch>
git diff <source_branch> <target_branch>
git add <filename>
git commit -m 'UI: comment'
git push origin <branch>