Git usage standard process

Git usage standard process

In team development, it is very important to follow a reasonable and clear Git usage process.

Otherwise, everyone submits a bunch of disorganized commits and the project quickly becomes difficult to coordinate and maintain.

Below is ThoughtBot's standard Git usage process. I learned a lot from it and recommend you to use Git in the same way.

Step 1: Create a new branch

First of all, every time you develop a new feature, you should create a separate branch (for this, you can refer to "Git Branch Management Strategy").

  1. # Get the main *** code
  2. $ git checkout master
  3. $ git pull
  4.  
  5. # Create a new development branch myfeature
  6. $ git checkout -b myfeature

Step 2: Submit the branch commit

After the branch is modified, you can submit the commit.

  1. $ git add --all
  2. $ git status
  3. $ git commit --verbose

The all parameter of the git add command means saving all changes (including new, modified, and deleted). Since Git 2.0, all is the default parameter of git add, so you can also use git add . instead.

The git status command is used to view changed files.

The verbose parameter of the git commit command will list the results of the diff.

Step 3: Write your commit message

When submitting a commit, you must give a complete and concise commit message. The following is a template.

  1. Present-tense summary under 50 characters
  2.  
  3. * More information about commit (under 72 characters).
  4. * More information about commit (under 72 characters).
  5.  
  6. http: //project.management-system.com/ticket/123  

The first line is a summary of no more than 50 words, followed by a blank line, listing the reason for the change, major changes, and issues that need attention. Finally, provide the corresponding URL (such as a bug ticket).

Step 4: Synchronize with the mainline

During the development of the branch, it is necessary to keep it synchronized with the trunk frequently.

  1. $ git fetch origin
  2. $ git rebase origin/master

Step 5: Merge commit

After the branch development is completed, there may be a lot of commits, but when merging it into the trunk, you often hope that there is only one (or at most two or three) commits, which is not only clear but also easy to manage.

So, how can we merge multiple commits? This requires the git rebase command.

  1. $ git rebase -i origin/master

The i parameter of the git rebase command stands for interactive. At this time, git will open an interactive interface to proceed to the next step.

The following example uses Tute Costa to explain how to merge commits.

  1. pick 07c5abd Introduce OpenPGP and teach basic usage
  2. pick de9b1eb Fix PostChecker::Post#urls
  3. pick 3e7ee36 Hey kids, stop all the highlighting
  4. pick fa20af3 git interactive rebase, squash, amend
  5.  
  6. # Rebase 8db7e8b..fa20af3 onto 8db7e8b
  7. #
  8. # Commands:
  9. # p, pick = use commit
  10. # r, reword = use commit, but edit the commit message
  11. # e, edit = use commit, but stop for amending
  12. # s, squash = use commit, but meld into previous commit
  13. # f, fixup = like "squash" , but discard this commit's log message
  14. # x, exec = run command (the rest of the line) using shell
  15. #
  16. # These lines can be re-ordered; they are executed from top to bottom.
  17. #
  18. # If you remove a line here THAT COMMIT WILL BE LOST.
  19. #
  20. # However, if you remove everything, the rebase will be aborted.
  21. #
  22. # Note that empty commits are commented out

The interactive interface above first lists the 4 latest commits of the current branch (the lower the newer). There is an operation command in front of each commit, the default is pick, which means that the commit line is selected and the rebase operation is to be performed.

Below the 4 commits are a bunch of comments listing the commands that can be used.

  • pick: Normal selection
  • reword: Select and modify the submission information;
  • edit: If selected, the rebase will pause and allow you to modify the commit (see here)
  • squash: If selected, the current commit will be merged with the previous commit
  • fixup: Same as squash, but will not save the commit information of the current commit
  • exec: execute other shell commands

Among the above 6 commands, squash and fixup can be used to merge commits. First, change the verb in front of the commits to be merged to squash (or s).

  1. pick 07c5abd Introduce OpenPGP and teach basic usage
  2. s de9b1eb Fix PostChecker::Post#urls
  3. s 3e7ee36 Hey kids, stop all the highlighting
  4. pick fa20af3 git interactive rebase, squash, amend

After this change, there will only be two commits left in the current branch. The commits on the second and third lines will be merged into the commit on the first line. The commit information will contain the commit information of these three commits at the same time.

  1. # This is a combination of 3 commits.
  2. # The first commit's message is:
  3. Introduce OpenPGP and teach basic usage
  4.  
  5. # This is the 2nd commit message:
  6. Fix PostChecker::Post#urls
  7.  
  8. # This is the 3rd commit message:
  9. Hey kids, stop all the highlighting

If the squash command in the third line is changed to the fixup command.

  1. pick 07c5abd Introduce OpenPGP and teach basic usage
  2. s de9b1eb Fix PostChecker::Post#urls
  3. f 3e7ee36 Hey kids, stop all the highlighting
  4. pick fa20af3 git interactive rebase, squash, amend

The running results are the same, and two commits will be generated. The commits on the second and third lines are merged into the commit on the first line. However, in the new commit information, the commit information on the third line will be commented out.

  1. # This is a combination of 3 commits.
  2. # The first commit's message is:
  3. Introduce OpenPGP and teach basic usage
  4.  
  5. # This is the 2nd commit message:
  6. Fix PostChecker::Post#urls
  7.  
  8. # This is the 3rd commit message:
  9. #Hey kids, stop all the highlighting

The squash and fixup commands can also be used as command line parameters to automatically merge commits.

  1. $ git commit --fixup
  2. $ git rebase -i --autosquash

Please refer to this article for its usage, which will not be explained here.

Step 6: Push to remote repository

After merging the commit, you can push the current branch to the remote repository.

  1. $ git push --force origin myfeature

The git push command needs to be added with the force parameter, because after rebasing, the branch history has changed and may not be compatible with the remote branch, so it may be necessary to force push (see here).

Step 7: Issue a Pull Request

After submitting to the remote repository, you can issue a Pull Request to the master branch, and then ask others to review the code and confirm that it can be merged into the master branch.

<<:  Why reinvent the wheel?

>>:  How to create a CocoaPods in Swift

Recommend

Tujia.com's big data precision marketing solution!

Tujia.com Big Data Precision Marketing Solution P...

Product operation: Let users share the deep logic of fission!

A good product will make users want to share, spo...

Design your marketing landing page like this to make users buy in

The core of marketing is to guide and influence t...

The business methodology of live e-commerce

Judging from the monthly active user scale of sev...

10 secrets of Apple: Inside Apple's product design studio

If we were to add an adjective to Apple, there wo...

Customized birthday blessing video for foreign beauties

I believe everyone hopes to receive video birthda...

How to acquire a large number of accurate users at low cost?

In 2017, the operation method of increasing fans ...

Segment "user activity status" to help you achieve KPI indicators

“Why has the conversion rate decreased? I can’t f...

How to motivate users and achieve user activity?

Someone once asserted that tool apps are doomed t...

Securities Qualification Examination Finance and Law

Securities Qualification Examination Finance and ...

5 steps to plan an event promotion!

Whether you are doing user operations, new media ...

High imitation Xiaomi Mall splash animation

Source code introduction This is a high imitation...