Continuous integration and continuous delivery

1. Introduction to Git Official website learning address http://git-scm.com/book/zh/v2 Git features: speedSimple designStrong support for nonlinear development mode (allowing thousands of branches of parallel development)Fully distributedAbility to efficiently manage large-scale projects like Linux kernel (speed and data volume) Since i ...

Posted by jimmyt1988 on Thu, 10 Feb 2022 06:37:39 +0100

Hexo blog reconstruction Road

preface Some time ago, because my computer hard disk was damaged, all the files were lost, and I didn't back up the files of Hexo blog. I only copied all the markdown files to the cloud disk five months ago. After consulting some online tutorials, I think there should be no way to save it, so I plan to redeploy this Hexo blog locally. At the ...

Posted by Syntac on Thu, 03 Feb 2022 09:58:41 +0100

Git uses the common commands of GIT series from getting started to collecting dust in the earth

Git uses the ash eating series from entry to earth collection ๐Ÿ“ข๐Ÿ“ข๐Ÿ“ข๐Ÿ“ฃ๐Ÿ“ฃ๐Ÿ“ฃ Hello! Hello, I'm [Xiao Zhang], a highly motivated blogger! ๐Ÿ˜œ๐Ÿ˜œ๐Ÿ˜œ โœจ Writing style of [Xiao Zhang]: I like to explain every knowledge point in [easy to understand] style, rather than using [tall and tall] official statement. โœจ [Xiao Zhang] the blog is mainly ...

Posted by phorman on Thu, 03 Feb 2022 06:34:47 +0100

git learning record

1. Overview of GIT 1.1 overview and advantages of GIT (1) git is actually a version control tool (a brief overview) Collaborative modification a. Multiple people modify the same file on the server side in parallel without mutual influence Data backup a. It can not only save the current state of directories and files, but also save the ...

Posted by isuckat_php on Thu, 03 Feb 2022 00:26:20 +0100

Introduction to installing GIT and git commands under Linux

preface Environment: CentOS 7 9 git version 1.8.3.1 Git official website https://git-scm.com/ Install Git [root@git ~]# yum install git #git installation, directly use yum to install View version [root@git ~]# git --version #View git version git version 1.8.3.1 git personal identity settings Git is a distributed version co ...

Posted by knox203 on Tue, 01 Feb 2022 20:52:16 +0100

DC-2 target penetration notes

DC-2 target penetration notes Target environment construction Attack Infiltrator: kali IP address: 192.168.75.128 Target: DC-1 IP address unknown Download address: http://www.five86.com/downloads/DC-2.zip Infiltration process 1. Information collection 1.1 IP address confirmation Command: ARP scan - L scan all LAN devices (IP, MAC address ...

Posted by AmandaF on Tue, 01 Feb 2022 13:32:19 +0100

HDL4SE: software engineers learn Verilog language

8 write custom basic units in c language This section was originally intended to continue to learn verilog language, but the software development progress bar is too heavy to be pushed, so it can only be worn slowly. Without the cooperation of software, the learning effect is worse, so bring the later content to the front. Of course, it's also ...

Posted by nadinengland on Mon, 31 Jan 2022 17:37:48 +0100

git cross team cooperation

git series article directory Chapter VII git cross team cooperation preface Previously, we introduced collaborative development within the company, and this chapter introduces cross company collaborative development 1, Cross team cooperation process? 1. Company a has project managers and programmers. Now join the progr ...

Posted by feelay on Mon, 24 Jan 2022 22:10:02 +0100

Jenkins+Maven+Git automatic deployment process (super comprehensive from environment construction to deployment)

Note: the function of this process is that as long as we upload the code to the GIT platform, we don't have to worry about it. jenkins can automatically publish our git original code compilation test deployment to the production environment. We don't have to pack the jar package ourselves every time and then pull it to the linux environment Jav ...

Posted by BLottman on Sun, 23 Jan 2022 05:05:25 +0100

Common scenarios for GIT usage

I Git Foundation 1.1 three scopes of GIT git config --global user.name 'your_name' git config --global user.email 'you_email@163.com' The default is local git config --local *local It only works for a warehouse* git config --global *global It is effective for all warehouses of the current user* git config --system *system Valid for a ...

Posted by rdennisak on Sun, 23 Jan 2022 05:01:52 +0100