Gitlab basic usage and backup recovery upgrade

1. Create a group 2. Create an item and configure the item to belong to a group 3. Create users, set passwords, and assign groups to users 4. Other users log in to Gitlab Turn off the registration function 5. The administrator assigns items to other users 6. View fzmyw user items 7. Basic use of gitlab HTTP push code (ro ...

Posted by sdi126 on Tue, 08 Mar 2022 03:54:43 +0100

Istio Best Practices Series: how to implement method level call tracing?

Zhao Huabing, senior engineer of Tencent cloud, Istio Member, management member of ServiceMesher, contributor of Istio project, is keen on open source, network and cloud computing. At present, it is mainly engaged in open source and R & D of service grid. introduction TCM (Tencent Cloud Mesh) is a Service Mesh hosting service based on Ist ...

Posted by Chris92 on Mon, 07 Mar 2022 19:43:46 +0100

Instruction manual for secondary development of openGauss open source database

This section mainly introduces compiling and verifying secondary development results. compile Compilation environment requirements Operating environment requirements The operating system environment requirements are shown in the table below. CPU Operating system requirements X86 architecture Cent ...

Posted by yacaph on Mon, 07 Mar 2022 06:15:23 +0100

Git notes tutorial (contents of chapters 1 to 4 of this article)

Git notes tutorial (contents of chapters 1 to 4 of this article) My first blog, a rookie (student), I hope the big guys will give me some advice. Chapter 1 initial of git 1.1 what is git? git is a distributed version control system, which is simply understood as version superposition, as shown in the following figure We are developing ...

Posted by superjoe30 on Sun, 06 Mar 2022 03:06:46 +0100

A "date" between MQTT and CoAP in EMQ X world

With the progress of 5G network technology, the world of Internet of things is also developing rapidly. Today, countless Internet of things devices are glowing in all corners of the world. However, unlike the traditional Internet, end-to-end communication has always been a difficulty in the Internet of things business. Different Internet of th ...

Posted by drunkenfury on Sat, 05 Mar 2022 03:42:41 +0100

Use Hexo to build your own blog-recording process

Preface Use Hexo to build your own blog site To use Hexo, you must first make sure that node is installed on your computer. JS and git environments The former is an environment capable of running JavaScript code on the server side, and the latter is a version control tool. Install node.js is mainly designed to use its package management to ...

Posted by bloodgoat on Thu, 03 Mar 2022 20:29:59 +0100

[Linux learning notes] 11 - process communication

Primary directory Secondary directory Tertiary directory 1. Pipeline 1. Anonymous pipeline Anonymous pipes communicate with blood related processes Anonymous pipeline communication steps: 1. A process opens the same file in read-write mode respectively, so there are two file descriptors, one pointing to the file in read mode and th ...

Posted by kyoru on Thu, 03 Mar 2022 12:42:50 +0100

Git's common command Guide

reference material: https://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html Common Git commands What is Git? Git is a distributed version control system. Different from the centralized version control system, everyone works in the local version library established through cloning. In other words, everyone has a complete version library. ...

Posted by Hobgoblin11 on Sun, 27 Feb 2022 17:23:54 +0100

Hello Git -- Git internal implementation mechanism

1, Introduction to internal implementation of Git warehouse Git is essentially a content addressable file system, which locates the file according to the SHA-1 hash value of the file content. The core of Git is a simple key value data store. Inserting any type of content into git database will return a key value. The inserted content can be re ...

Posted by tcl4p on Sat, 26 Feb 2022 17:17:56 +0100

Git study notes

1, Initialize warehouse (init) # If you don't want git to manage tracking files, you can add them in the root directory of the warehouse gitignore file, write the corresponding rules in it $ git init Initialize the current directory to git Warehouse Initialized empty Git repository in D:/Study research/underway/Git study/learngit/ ...

Posted by Bunyip on Thu, 24 Feb 2022 09:37:24 +0100