search

Home  >  Q&A  >  body text

git - 正文中的情况怎么使用版本管理器 求一个最佳思路

我在公司代码改到一半就回家了,代码都在我的电脑里,没有提交版本库。

回到家以后,发现线上有个问题,需要马上修复,但是改动的文件,就是我在公司没有提交的文件之一,因为情况紧急我是直接到生产服务器调整了代码。

第二天合并代码的时候,意识到这样做应该是很不靠谱的,如果改动的文件比较多,应该很容易就会出问题。

求一个最佳思路

PHP中文网PHP中文网2798 days ago601

reply all(2)I'll reply

  • 迷茫

    迷茫2017-04-24 09:13:46

    Recommend a git version control model: http://www.juvenxu.com/2010/11/28/a-successful-git-branching-model/
    The code you write at the company should belong to the feature branch (feature branch) or development branch (develop), while the code you modify at home belongs to the hotfix branch (hotfix branch). First, create a hotfix branch at home and then merge it into the main branch. Branch (master), and then get the patch from the master branch the next day and merge it into your own development branch.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-24 09:13:46

    There is also a git flow
    https://github.com/nvie/gitflow

    http://www.jeffkit.info/2010/12/842/
    http://jwch.sdut.edu.cn/book/linux/git_flow.html?highlight=flow

    reply
    0
  • Cancelreply