git granch # local branches git branch -r # remote branches git branch -a # local and remote branches git status # current branch status git checkout develop # go to "develop" branch git checkout hotfix/tk_01_inv # go to "hotfix/tk_01_inv" branch git pull # download the remote changes into current branch git add . # save all changes git commit -m 'some comment' # commit into local branch git push # public my local changes into remote git repository git merge : "develop" branch...