Learn one minute a day to use Git server to view debug branches and fix them

Learn one minute a day to use Git server to view debug branches and fix them

Debug branch

During the normal development of a project, previously released versions may have bugs. In this case, you need to stop the current development task, fix the bug first, and then come back to continue the development task after the bug is fixed.

Stash in git provides a function to save the site, which can save the content in the current workspace and temporary storage area without committing, and then fix the bug. After completion, restore the site and continue development work.

The example is as follows: Stop the current work, fix a bug in the master branch, and modify the dailyfresh/settings.py file

The original content of language and time zone is

LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'

Change the language and time zone to

LANGUAGE_CODE = 'zh-Hans'
TIME_ZONE = 'Shanghai/Asia'

1. Check the current status

git status

2. Save the scene

git stash

Check the current status again and find that it is clean

git status

3. Switch to the master branch

git checkout master

4. Create a temporary branch to fix bugs

This branch will be deleted after use

git checkout -b bug001

5. According to the above design, modify the language and time zone of the dailyfresh/settings.py file

as follows

LANGUAGE_CODE = 'zh-Hans'
TIME_ZONE = 'Shanghai/Asia'

Add: Add changes in the workspace to the staging area

Note: The current directory is the directory where the manage.py file is located

(py_django) python@ubuntu:~/Desktop/pytest/django1/dailyfresh$ git add dailyfresh/settings.py

Submit: Submit the contents of the temporary storage area to the warehouse area

git commit -m 'Fix timezone language'

6. Switch back to the master branch

git checkout master

7. Merge the bug001 branch into the master branch

Because temporary branches will be deleted after use, you cannot query the history through branches. Therefore, when using temporary branches, you need to use the no-ff method and write the -m comment information.

git merge --no-ff -m "Fix bug-language time zone" bug001

Push to server

git push

8. Delete temporary branch bug001

git branch -d bug001

9. Switch back to the working branch zhujiao

git checkout zhujiao

View the site list

git stash list

Restoration site

git stash pop

Check the work status after restoring the site

git status

You can continue developing in this branch

This is the end of this article about learning Git for one minute every day to view Debug branches and repair them. For more relevant Git viewing Debug branches and repair content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed steps to build a Git server on CentOS
  • Detailed explanation of building your own Git server under CentOS
  • Steps to build a Git server under Linux
  • Alibaba Cloud Linux-CentOS System-Detailed Explanation of Building Git Server
  • Detailed explanation of how to build a Git server under Linux

<<:  MySQL deep paging (how to quickly paginate tens of millions of data)

>>:  Flex layout makes adaptive pages (syntax and examples)

Recommend

Detailed explanation of mysql download and installation process

1: Download MySql Official website download addre...

MySQL 5.7.17 installation and configuration method graphic tutorial under win7

I would like to share with you the graphic tutori...

How to run tomcat source code in maven mode

Preface Recently, I was analyzing the startup pro...

Two methods to disable form controls in HTML: readonly and disabled

In the process of making web pages, we often use f...

Summary of new usage of vi (vim) under Linux

I have used the vi editor for several years, but ...

Install and deploy java8 and mysql under centos7

Generally, learning Java and deploying projects a...

Deployment and configuration of Apache service under Linux

Table of contents 1 The role of Apache 2 Apache I...

Implementation of new issues of CSS3 selectors

Table of contents Basic Selector Extensions Attri...

HTML page jump and parameter transfer issues

HTML page jump: window.open(url, "", &q...

Detailed explanation of Object.create instance usage in js

1. Create a new object using the Object.create() ...

3 common errors in reading MySQL Binlog logs

1. mysqlbinlog: [ERROR] unknown variable 'def...

How to use ss command instead of netstat in Linux operation and maintenance

Preface When operating and managing Linux servers...