6git -------------------- git multi person development collaboration tool ------------------- full stack development 46

1, What is Git introduce When developing functional projects, what should we do when we want to switch versions and realize multi person development?We have software similar to QQ and office to realize multi person sharing, as well as version control: similar to graduation thesis, copywriting, video editing, etc., we need to repeatedly mo ...

Posted by chrislive on Sun, 23 Jan 2022 02:11:28 +0100

CI/CD Linux auto deployment feature (nanny level tutorial)

##CI/CD Automated Deployment Top Case 1: deploying GitLabCase 2: configuring GitLabCase 3: deploying Jenkins 1 case 1: deploying GitLab 1.1 problems This case requires to build a GitLab server, and the requirements are as follows: Preparation environment (container environment)Installing GitLab 1.2 scheme Preparation of experimental e ...

Posted by toolmania1 on Thu, 20 Jan 2022 16:34:46 +0100

git file management and indexing

preface This night is destined to be a sleepless night. The dialogue between Xiaobai and cangls has become white hot. Xiaobai tirelessly consulted about git and became more and more interested in indexing. The versions of Xiaobai's previously saved small movie files can be compared to explore which version has better picture quality. Xiaobai: ...

Posted by ac1dsp3ctrum on Tue, 18 Jan 2022 02:48:27 +0100

Puge - Yunyan team - the latest Git related configuration, integrated with IDEA

Git -- version control tool 1. What is Git: Git is a version control tool, Common version control tools: ​ Git,SVM,CVS,VSS,TFS,Visual Studio Online Functions of version control tools: Realize multi person collaborative development across regionsTrack and record the history of one or more documentsOrganize and protect your source ...

Posted by Ell20 on Mon, 17 Jan 2022 22:56:44 +0100

Introduction to Hologres TPCH based performance test

Introduction: This paper will introduce how to do performance test based on TPCH data set in Hologres, and provide reference for test results to facilitate you to select product specifications. background information TPC-H (Business Intelligence Computing test) is a test set developed by the transaction processing performance Council (TPC) to ...

Posted by blues on Mon, 17 Jan 2022 08:47:52 +0100

git and github build and use tutorial under linux

1: Building git and github under linux 1. Registered gihub account: github official website: https://github.com/ You can create it yourself. Log in, create repository, create a new warehouse, and create a test library test. The creation is complete. 2. linux Installation git environment yum -y install git 3. Generate ssh key The SSH key ...

Posted by 2oMst on Thu, 13 Jan 2022 21:18:55 +0100

Git underlying principles and related operations

1. Local Git principle Workspace, version library and staging area: As shown in the figure above, the left side is the work area, which can be seen in the computer;On the right is the version library, and there is a hidden directory in the workspace Git, which is not a workspace, but a git version library, as shown in the first red box i ...

Posted by davinci on Tue, 11 Jan 2022 03:24:28 +0100

Gitea - a detailed tutorial on building a private git server

This article will take you from 0 to 1 to build a private git server through Gitea in two ways: source code and docker installation What is Gitea Gitea is an open source community driven lightweight code hosting solution. The back end is written in Go and licensed by MIT Official website: https://gitea.io/zh-cn/ 1, Source code ...

Posted by emmbec on Wed, 05 Jan 2022 07:43:28 +0100

Talk about the development, compilation and testing of ClickHouse

ClickHouse, an open source OLAP database with excellent performance, has become more and more popular in recent years. In addition to taking root in major Internet companies, it has also attracted a large number of enthusiastic contributors. As of v21 In version 10, CH has 1064 contributors worldwide. SELECT count(1) FROM system.contributors ...

Posted by evo4ever on Mon, 03 Jan 2022 22:15:16 +0100

Git contractual submission

summaryEvery time we submit the code, we need to add a description for the content of this modification, for example:git commit -m "Initial commit"; git commit -m "Fixed some known issues."; git commit -m "Added new features.";But in fact, some commit message s are strange, such as the following:A commit should accurately describe the purpose a ...

Posted by markjia on Mon, 03 Jan 2022 09:04:25 +0100