git common commands

git common commands git is a distributed version control system git features version control Multi person collaboration Create SSH Key $ ssh-keygen -t rsa -C "youremail@example.com" Configure user information $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" ## Check the ...

Posted by travelkind on Sun, 20 Feb 2022 07:07:27 +0100

Golang open source streaming media audio and video network transmission service - LAL

I Introduction to lallal is an open source live streaming media network transmission project, which is mainly composed of three parts:lalserver: streaming media forwarding server. It is similar to nginx RTMP module and other services, but supports more protocols and provides richer functions.demo: some small applications, such as push and pull ...

Posted by theperfectdrug on Sun, 20 Feb 2022 01:05:11 +0100

git common commands

The course recommended by Wu Haiyang of wanmen university is very clear. The content of this blog is basically the content of the course. 1, Environment configuration git configuration // Configure user name and mailbox git config --global user.name "yourname" git config --global user.email "your@email" //View profile git config --list //View ...

Posted by bobby317 on Fri, 18 Feb 2022 22:05:22 +0100

[learn and forget] git principle - 15. Git object [blob object]

Git is a content addressed file system. What do you mean? The core of Git is a simple key value data store. You can insert any type of content into the database and return a key value, which can be retrieved at any time. (1) Directory where Git objects are stored All objects in Git are stored in the local version library Objects in the / ...

Posted by stevenm on Fri, 18 Feb 2022 13:59:15 +0100

Add existing source code into repo management

Add existing source code into repo management Applicable to the source code of non source code management (git/repo) in large projects preface ​ When the company is developing some projects, the code given from the supplier's original factory does not contain any source code management files. Many people need to cooperate in the developmen ...

Posted by ernielou on Fri, 18 Feb 2022 12:05:46 +0100

[learn and forget] git principle - 16. Git object [Tree object]

1. Tree object introduction The Git object type to be discussed next is tree object, which can solve the problem of saving file names. Tree objects can store file names and also allow us to organize multiple files together. Git stores content in a way similar to the UNIX file system, but with some simplification. All contents are stored i ...

Posted by tdeez173 on Fri, 18 Feb 2022 01:29:23 +0100

Using OpenYurt to manage WasmEdge | lightweight edge computing solution

OpenYurt, Vivian Hu (WasmEdge) Edge calculation It is a distributed application architecture that places computing resources (such as CPU and storage) close to the data source. In this way, it provides low latency, high performance and strong security for various applications. However, similar to cloud computing in data center, edge computi ...

Posted by timcapulet on Wed, 16 Feb 2022 12:02:58 +0100

YoloV5 actual combat: teach object detection by hand

Abstract: YOLOv5 is not a single model, but a model family, including YOLOv5s, YOLOv5m, YOLO This article is shared from Huawei cloud community< YoloV5 actual combat: teach object detection by hand -- YoloV5 >, author: AI Hao. abstract Strictly speaking, yoov5 is not the fifth version of YOLO, because it has not been recognized by ...

Posted by Scarum on Tue, 15 Feb 2022 10:49:55 +0100

[SpringCloud component learning notes series] Config component

5. Use and explanation of SpringCloud Netflix Config 5.1 introduction In the distributed system, due to the large number of services, the configuration files are scattered in different micro service projects, which is inconvenient to manage. The Spring Cloud Config component is mainly used to centrally manage configuration files. It supports ...

Posted by acoole on Sat, 12 Feb 2022 13:00:02 +0100

Git common errors and Solutions

Git errors and Solutions 2021/12/23 Step 1: set up Git warehouse git init (only used once when building a warehouse) cd to your local project root directory and execute git command. This command will create one in the current directory Git folder. Step 2: add all files of the project to the warehouse git add . This command will add all file ...

Posted by s.prema@yahoo.com on Thu, 10 Feb 2022 20:24:22 +0100