Git command book, hard!

git configConfigure Git related parameters.Git has three profiles:Warehouse level configuration file: in. git/.gitconfig of the warehouse, the configuration file is only valid for the warehouse.Global configuration file: Mac system in ~ /. gitconfig, Windows system in C: \ users \ < user name >. gitconfig.System level configuration file: ...

Posted by kaeserea on Fri, 05 Nov 2021 17:08:22 -0700

Submit kernel patch

Submit kernel patch Rong Tao October 28, 2021 Document modification log dateModification contentModified byremarksOctober 28, 2021establishRong Tao 1. Introduction 2. Clone kernel # Cloning Linux kernel from GitHub $ git clone --depth=32 https://github.com/torvalds/linux # Switch branch $ git checkout master # synchronization $ ...

Posted by ksmatthews on Thu, 28 Oct 2021 04:33:04 -0700

Lite Git (III) - First Commit

Lite Git (III) - First Commit preface This column is called Lite Git. I mainly want to correspond to Pro Git, which is the official guide of Git. If you are interested or want to know more details, please move on Download PDF version from the official website. The purpose of this column is to enable the novice students to master the basic a ...

Posted by matstuff on Tue, 26 Oct 2021 23:01:00 -0700

Git version management

gitee usage process First, download and install git software, then register gitee or github account, and then create a warehouse on the platform. Configure the user name and mailbox in git command git config --global user.name "Name " git config –global user.email "Mailbox Set SSH KEY First generate the ssh key in the local git comma ...

Posted by pas07920 on Tue, 26 Oct 2021 19:03:43 -0700

Jenkins combined with gitlab to realize static project release

1, Jenkins basic overview 1.1 what is Jenkins Jenkins is an open source continuous integration tool that provides a friendly operation interface. It is developed by JAVA. Jenkins is a scheduling platform that does not handle anything and calls third-party plug-ins to complete all work. Jenkins is an open source CI & CD software leader ...

Posted by ollie007 on Sat, 23 Oct 2021 12:35:36 -0700

git learning notes

1, Git basic introduction 1. Git structure 2. Local and remote Libraries 2.1 intra team collaboration The difference between pull and clone: Clone a version library as like as two peas from the remote server to the local version, which is copied from the entire version library, called clone. (clone is a copy of the library to your loc ...

Posted by Rushy on Fri, 22 Oct 2021 05:14:08 -0700

Docker installs Gogs and git services

Technical Party: Su Xuefeng Mirror installation gihub address: https://github.com/gogs/gogs gogs official website: Gogs: A painless self-hosted Git service How to install gogs for gihub official docker: https://github.com/gogs/gogs/tree/master/docker Pull gogs image: #from Docker Hub Extract images from. $ docker pull gogs/gogs # ...

Posted by nickihandy on Wed, 20 Oct 2021 19:26:49 -0700

Introduction to git use

Gitee Project Management Introduction to git Important Master of Basic Use of git Operational gitee mastery of remote warehouses Mastering with git in IDE(vscode webstrom idea) Introduction to git: Git is currently the most advanced distributed version control system in the world (none), open source, free of charge. Role: Can quickly m ...

Posted by NTM on Wed, 20 Oct 2021 09:53:07 -0700

A brief summary of linux kernel source git operations

An old colleague wanted to quickly check the different versions of the kernel source and asked me if there was any way, of course. Most people who play linux should know that kernel/git/stable/linux.git - Linux kernel stable tree You can find and download the linux kernel source. However, there are many original versions of the kernel source co ...

Posted by kristianblom on Tue, 19 Oct 2021 09:12:41 -0700

Git tutorial

1, Git installation windows installation: enter the website https://git-scm.com/ Download the installation, and then cmd command line configuration Go directly to Tencent software center to download! > git config --global user.name "itnanls" > git config --global user.email "itnanls@163.com" #Check whether the information is wr ...

Posted by healthnut on Tue, 12 Oct 2021 11:40:10 -0700