git 提交步骤

Var branch = new-feat    In-master-branch    git pull --rebase    git checkout -b <branch>    In-<branch>-branch    Make some change    git add .    git commit -m '<fix || feat>: <msg>'    git checkout master    In-master-branch    git pull --rebase    git checkout <branch>    git rebase master    git log --graph --decorate --all //查看log,是否符合要求    git push --set-upstream origin new-feat    点击终端里面的链接,快速提交merge request