Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to understand the local operation library and remote operation library of git

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how to understand git's local operation library and remote operation library. The content is concise and easy to understand, which will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.

Git is an open source distributed version control system for agile and efficient handling of any small or large project. At present, many enterprises

1. Establish a local warehouse in git under windows

$git config-global user.name "hehe"

$git config-global user.email "hehe@163.com"

2. Create a key

$ssh-keygen-t rsa-b 4096-C "hehe@163com"

Generating public/private rsa key pair.

Enter file in which to save the key (/ c/Users/hehe/.ssh/id_rsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in / c/Users/heheiscool/.ssh/id_rsa.

Your public key has been saved in / c/Users/heheiscool/.ssh/id_rsa.pub.

The key fingerprint is:

SHA256:gx8BsPtCRTwoKsD0D+tQeo+XIgl31mzKp6Qw2UrAIlQ heheiscool@163com

The key's randomart image is:

+-[RSA 4096]-+

| | o. E. roomo |

|.. + .oo. | |

| .o =. ... |

| = o + =. . | |

| | * + .oroom.= S | |

| = + = = oval.. O |

| +. + = + o. | |

|. + .oo+ |

|. . . | |

+-[SHA256]-+

3. Query the ssh key created

$ls-al ~ / .ssh

Total 28

Drwxr-xr-x 1 hehe 197609 December 20 21:57. /

Drwxr-xr-x 1 hehe 197609 December 20 21:45.. /

-rw-r--r-- 1 hehe 197609 3243 December 20 21:57 id_rsa

-rw-r--r-- 1 hehe 197609 743 December 20 21:57 id_rsa.pub

-rw-r--r-- 1 hehe 197609 803 December 18 21:25 known_hosts

4. Initialize the local git repository

$git init

Initialized empty Git repository in C:/wamp64/www/other/www/.git/

5. Add files to the warehouse

$git add.

Warning: LF will be replaced by CRLF in assets/css/colorpicker.css.

The file will have its original line endings in your working directory.

6. Submit the documents to the warehouse

$git commit-m "first"

[master 47a15e3] first

Warning: LF will be replaced by CRLF in assets/css/colorpicker.css.

The file will have its original line endings in your working directory.

7. Git the local library to generate the library remotely

Hehe@hehe MINGW64 / c/wamp64/www/other/www (master)

$git remote add origin https://github.com/heheiscool/Keep.git

Fatal: remote origin already exists.

8. Push the local library file to build the library remotely

$git push-u origin master

Counting objects: 123, done.

Delta compression using up to 4 threads.

Compressing objects: 100% (119 Compact 119), done.

Writing objects: 100% (123 MiB), 1.63 KiB/s, done.

Total 123 (delta 27), reused 0 (delta 0)

Remote: Resolving deltas: 100% (27 amp 27), done.

To https://github.com/hehe/Keep.git

[new branch] master-> master

Branch master set up to track remote branch master from origin.

If the remote prompt cannot be updated, say behind, etc., make sure the current code is up to date before you can force the push (note, do not force the push at will)

$git push-u-f origin master

2018-6-28 add a few points:

1. Force the local library to be overwritten from the remote library

The Internet is the following method

Git fetch-all

Git reset-hard origin/master

2. About pull request (pr)

Two branches: master, develop,develop and master send pr requests. The command operates as follows:

Git clone git@XXXX.com

Git checkout master

Git pull git@XXXX.com develop

Git push origin master

So the local library master has been submitted to pr, and then uploaded to github:

Git add.

Git commt-m "#"

Git push-u origin master

3. Create a branch:

Git branch newname

Switch to the branch:

Git checkout newname

Upload branch:

Git push origin newname

Or upload the current branch.

Git push origin HEAD-u

Remotely delete branch

Git branch-d newname

The above content is how to understand the local operation library and remote operation library of git. Have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report