What is your company's Git management process like?
PHP中文网
PHP中文网 2017-05-02 09:43:25
0
5
624

Our company’s project code management uses Git for version control, which uses git rebase and gitlab’s merge request. They say that git rebase can make submission records linear and other benefits. I want to know about your company. What does the Git process look like? Can you explain in detail the complete process of the next commit?

PHP中文网
PHP中文网

认证0级讲师

reply all(5)
阿神

git status detection
git pull new code--conflict modification
git add .
commit
push

習慣沉默

gitflow

仅有的幸福

Half gitlab flow

Peter_Zhu

Stop joking, use it as SVN

Ty80

Our company uses github. Every time we modify or add code, we create a branch (feature branch) and push it to the remote. Initiate a pull request. Others review->approve. Then merge it to master yourself. Finally delete this remote branch.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template