git commit message writing guide

0. Commit message preparation guide [statement] refer to the angular code specification and some blogs, only learning records, non-commercial. 1. General When Git is used to submit code in daily development, it is required to write git commit message, otherwise there will be no submission code. As a change description, the commit message is ...

Added by bnownlater on Wed, 22 Dec 2021 02:17:41 +0200

Git git configuration file, underlying operation command

1. Common (confused) commands - cold knowledge git commit opens the editor without -m self-service, which is used to enter comments for the change submission.git diff commit1 commit2 (commit1 is the benchmark)Git show branch -- more = 10 (view the commit summary information of the current branch)git mv file renaminggit clone public_repo my ...

Added by Lahloob on Tue, 21 Dec 2021 04:00:46 +0200

The 7-minute use case takes you through the git commands commonly used at work

Author: Valeria Translator: Front-end wit Source: medium Git can essentially record text changes, but it is defined as a version control system. You may have used git in one way or another: because of its distributed nature, it is a de facto standard for code version control, as opposed to a centralized Apache Subversion (SVN). Install git ...

Added by rabab.orthalis on Mon, 20 Dec 2021 05:30:41 +0200

How to build a personal Git remote warehouse for raspberry pie (the same is true for other Linux devices)

First, we need to analyze the problem. To implement a Git remote warehouse server, we need to know: How to configure Git server side.How to connect to a remote warehouse.How to push, pull, fetch and other operations from the remote warehouse. After the analysis, it is found that it is quite simple. Let's go step by step. The first is the conf ...

Added by PHPMan on Sun, 19 Dec 2021 08:34:09 +0200

Distributed version control tool -- Git

This paper simply records various commands and functions used in personal learning git. Do not know where to download the small partner can directly portal https://git-scm.com/ After downloading and installing Git, the right-click menu will add two options (set when installing Git) git init project creation Just find a disk (D,E,F ...

Added by Catharsis on Sun, 19 Dec 2021 05:38:22 +0200

Git generates SSH key link code cloud, and GitHub also uses the same principle

Generate SSH public key As mentioned earlier, many Git servers use ssh public keys for authentication. In order to provide the Git server with the ssh public key, if a system user does not already have the key, a copy must be generated in advance. This process is similar on all operating systems. First, you need to confirm whether you already h ...

Added by dank on Sat, 18 Dec 2021 18:40:05 +0200

[Shangsi Valley] Git and GitHub foundation complete tutorial - note 2

stay [Shangsi Valley] Git and GitHub foundation complete tutorial - note 1 There is a brief introduction to Git, as well as commands such as adding add, submitting commit, withdrawing reset, etc. Let's recall the command of the last article, with good Txt as an example. catalogue 0 recall the content of the previous article 4.3. 5 forward a ...

Added by coolfool on Thu, 16 Dec 2021 00:26:10 +0200

Git tutorial -- a tutorial based on Liao Xuefeng, which is the most easy to understand

This tutorial is based on Liao Xuefeng's tutorial. Thank the original author for writing the best Git tutorial at present Liao Xuefeng Git tutorial Git tutorial 1. Git configuration installation (windows) You can use Git on Windows directly from Git's official website Download installer , and then install it according to the default option. ...

Added by niall_buckley on Wed, 08 Dec 2021 22:09:18 +0200

Jenkins installation and continuous integration environment configuration

1 continuous integration description ● first, developers submit code to Git warehouse every day. ● Jenkins, as a continuous integration tool, uses Git tool to pull the code from Git warehouse to the continuous integration server, and then cooperates with JDK, Maven and other software to complete the compilation, testing, review and packaging ...

Added by Adthegreat on Fri, 03 Dec 2021 03:58:27 +0200

[GO] variable type and definition

GO: Microsoft's VC compiler fills the uninitialized stack space with hexadecimal 0xCC, while the uninitialized heap space is filled with 0xCD, and 0xCCCC and 0xCDCD correspond to the words "hot" and "Tun" in Chinese GB2312 code catalogue Basic type GO pointer String length Basic type string int,int8,int16,int32,int ...

Added by stormcloud on Tue, 30 Nov 2021 16:41:47 +0200