Git Notes

作者: Kreiven | 来源:发表于2018-05-22 14:17 被阅读0次

When a requirement of new feature or bugfix is coming

  1. Create branch from develop branch.
  2. Happy coding;), daily commit, merge from develop and resolve conflicts.
  3. If completed, create a pull request for other developers to review.
  4. Waiting for others' approve and merge actions.
  5. Done or keep improving.

I worked half a day, and turns out I'm not working on the right branch. :(

Don't be upset, all you need to do is to convert uncommited changes into a patch file.

  1. Stage modifications.
  2. Create a patch for staged files, save it anywhere you can locate.
  3. Extract the patch to your own branch.

相关文章

  • [git]git notes

    介绍 VCS(Version Control Systems) 版本控制是一种记录一个或若干文件内容变化,以便将来...

  • Git Notes

    When a requirement of new feature or bugfix is coming Cre...

  • Git Notes

    Cancel the version control by git git init the whole root...

  • Git Notes

    观书有会意处,题其衣裳,以记其事~ 1、拉取远程分支并创建本地分支 使用该方式会在本地新建分支branch_x,并...

  • git notes

    title: git notesdate: 2020-03-07 01:13:12tags: 工具 hexocat...

  • Notes for Studying Git

    First Lesson Compare differences for two large files in L...

  • 好玩的shell脚本

    我的总结记录文档: https://github.com/jinboxu/Shell_notes.git 1. 获...

  • Git's Notes And Records

    Author: Mikoy Date: 2018-02-04 1. The concepts of git: Gi...

  • git版本控制notes

    在进行文件,代码修改时,为了记录每次的更改以及之后重回更改前的版本,使用版本控制工具是一种很有效的方式。之前使用g...

  • Git学习记录:Notes for Codecademy

    Codecademy学习记录 Basic Git Workflow(Git工作流初探) git三大部分 编辑一份文...

网友评论

      本文标题:Git Notes

      本文链接:https://www.haomeiwen.com/subject/exbhjftx.html