84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
我们公司的项目代码管理是采用Git进行版本控制,其中用了git rebase 和 gitlab的merge request,都说git rebase能让提交记录呈线性等其他各种好处,我想知道你们公司的Git流程是什么样子的,能详细说明下一次commit的完整流程吗?
git rebase
认证0级讲师
git status detectiongit pull new code--conflict modification git add .commitpush
gitflow
Half gitlab flow
Stop joking, use it as SVN
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.
git status detection
git pull new code--conflict modification
git add .
commit
push
gitflow
Half gitlab flow
Stop joking, use it as SVN
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.