search

Home  >  Q&A  >  body text

What is your company's Git management process like?

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中文网2770 days ago602

reply all(5)I'll reply

  • 阿神

    阿神2017-05-02 09:45:25

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

    reply
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:45:25

    gitflow

    reply
    0
  • 仅有的幸福

    仅有的幸福2017-05-02 09:45:25

    Half gitlab flow

    reply
    0
  • 天蓬老师

    天蓬老师2017-05-02 09:45:25

    Stop joking, use it as SVN

    reply
    0
  • PHP中文网

    PHP中文网2017-05-02 09:45:25

    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.

    reply
    0
  • Cancelreply