Git study notes

Git common syntax [TOC] Introduction to Git describe Git (pronounced / g) ɪ t/. ) It is an open source distributed version control system, which can effectively and quickly deal with the version management of projects from very small to very large. Git is an open source version control software developed by Linus Torvalds to help manage Lin ...

Added by amir1985 on Sun, 13 Feb 2022 12:51:18 +0200

gitlab docker failed to access with ssh

preface Previously, a gitlab server was built on Alibaba cloud student computers. Because gitlab already exists on the host and the environment has been messed up, it is not easy to install gitlab directly, so we have to run it in the docker container. It is very convenient for gitlab to deploy docker container. You can use it by switching th ...

Added by BoostinZX on Wed, 09 Feb 2022 22:49:16 +0200

Gerrit plug-in development case

preface Recently, I took on the task of Gerrit plug-in development for some special reasons. I originally wanted to find a ready-made demo from the Internet for reference. As a result, I spent most of the time stunned and didn't find a relevant plug-in case. The relevant domestic blogs either stayed in Gerrit's construction tutorial or in the ...

Added by jeremy0 on Wed, 09 Feb 2022 01:11:42 +0200

Git total solution idea github gitee gitlab

Git of Shang Silicon Valley Technology Course Series Curriculum resources https://www.bilibili.com/video/BV1vy4y1s7k6 1. Git overview Git is a free and open source distributed version control system, which can quickly and efficiently deal with all kinds of problems from small to large project Git is easy to learn, small footprint and extreme ...

Added by zeberdeee on Wed, 02 Feb 2022 09:00:12 +0200

Basic commands of Git (learning notes)

I'm a sophomore. The purpose of writing this article is to make a certain record of my knowledge and technology, and I'm willing to share it with you. Because I'm still young, there are inevitably some mistakes and omissions in the published article. Please forgive me and correct me if you read this article. If you have any questions during rea ...

Added by greenie__ on Wed, 02 Feb 2022 08:26:57 +0200

[git basic course] [Xiao Ming's git learning path]

introduction   Git is an excellent version control system. If there is no actual application scenario, beginners may feel very difficult just learning git related commands. Therefore, organize a tutorial to introduce the basic use process of git in different scenarios. 1: Can do skilled management code locally.   Xiao Ming is ...

Added by josephferris on Tue, 01 Feb 2022 11:58:24 +0200

Git project code pull, push and conflict resolution

catalogue SSH keys configuration Git branch Git code pull push and conflict resolution View local code change and code fallback version operations   SSH keys configuration The corresponding project is created on gitlab. After entering the project details, a git address will be generated to clone or pull the code of the remote warehouse ...

Added by thomasgrant on Sat, 29 Jan 2022 19:46:26 +0200

Gitlab CI pull submodules

preface In project development, it is sometimes necessary to use another project (third-party or independent project). At this time, you can use Git tools - sub modules To manage. When a sub module (GIT sub module add < project gitlab URL >) is added locally and pushed to gitlab, we expect gitlab CI to automatically clone or pull the ...

Added by icez on Wed, 26 Jan 2022 13:13:45 +0200

Git&GitHub&Gitee&GitLab (common operations)

Git&GitHub&Gitee&GitLab Chapter 1 Common Git Commands Command NameEffectGit config--global user. Name User NameSet User SignatureGit config--global user. Email mailboxSet User Signaturegit initInitialize Local Librarygit statusView local library statusgit add file nameAdd to Staging AreaGit commit-m "log information" ...

Added by alexander.s on Mon, 24 Jan 2022 05:16:59 +0200

Git Basics - tagging

Git Basics - tagging Label Like other version control systems (VCS), Git can label a submission in the warehouse history as important. Typically, people will use this function to mark publishing nodes (v1.0, v2.0, etc.). In this section, you will learn how to list existing tags, how to create and delete new tags, and what different types of ta ...

Added by audiodef on Sat, 22 Jan 2022 18:45:13 +0200