Home Backend Development PHP Tutorial Git common knowledge and commands

Git common knowledge and commands

Nov 07, 2016 am 10:16 AM

Install the git program

ContOS

                                                                                             git

Installation on Windows

                            https:// git-scm.com/download/win

After the installation is completed, the final step of setting is required

        git config --global user.name "Qiang" // Such as Qiang

          git config --global user.email "zhiqiangwang@aliyun .com"//Write to your email

Create a version repository and push the file

Mkdir /home/gitroot //Create a directory

Cd /home/gitroot //Enter the directory

Git init //Use Command initialization. Let this directory program a warehouse that can be managed by git

Ls –a //You can see the .git directory

Echo –e “QIANG”>1.txt //Create a file 1.txt

Git add 1.txt / /Add 1.txt to the repository

Git commit –m “add new file 1.txt” //After adding, you must commit to actually submit the file to the git repository

Echo –e “QIANG QIANG”> > 1.txt //Change 1.txt

Git status //Check the status of the current warehouse, such as whether there are any changed files

Git checkout --1.txt//Overwrite 1.txt in the warehouse with local 1 .txt

Git diff 1.txt / You can compare what has been modified in 1.txt this time, compared with the version in the warehouse

Delete the file

1. git add test.txt

2. git commit - m "add test.txt"

3. rm test.txt

4. git status

5. git rm test.txt

6. rm 'test.txt'

7. remove test.txt"

Upload all files in the current directory

1. git add .

2. git commit -m "updata all"

3. git push

Version changes

many times Change 1.txt and perform git add, git commit operations

Git log //You can view all warehouse record operations submitted to the git warehouse

Git log –pretty=oneline Display line by line

You can view past submissions through git log All versions, so you can specify a certain version to roll back according to this log

Git reset –hard d03da70182c1e78d04df1d7eee2f6a972ae4f82b //You can roll back this version. Here is a long string, which can be abbreviated (the first 5 characters)

Git reflog //Yes Show all versions

File recovery

When you modify 1.txt and find that the modification is wrong, you want to modify the status of the last submission

Git checkout –1.txt//Restore to the status of the last submission

If 1 The .txt modification is completed. After saving, git add 1.txt is created but there is no git commit. If you want to go back to the state of the last commit, you can use

Git reset HEAD 1.txt

and then

Git checkout – 1.txt

File deletion

Echo “QIANG” >2.txt

Git add 2.txt

Git commit –m “add new file 2.txt”

Rm –f 2.txt

Git status

Git rm 2.txt

Git commit –m “delete 2.txt”//Completely delete 2.txt

Create a remote warehouse

1. Register a free warehouse first https:/ /github.com/ or https://git.oschina.net/

2. Permission authentication, add key

github:Setting->SSH and GPG keys->new SSH key->Enter title and key

oschina: Profile->SSH Public Key->Add Public Key->Enter title and public key

Generate key pair: ssh-keygen

Liunx: Cat /root/.ssh/id_rsa

Cat /root /.ssh/id_rsa.pub //Public key

Windwos:Cat c:/Users/Cmd/.ssh/id_rsa

Cat c:/Users/Cmd/.ssh/id_rsa.pub

Add successfully and receive email

3. Create a create link warehouse

3.1 Mkdir /home/gitroot //Create directory

3.2 Cd /home/gitroot //Enter directory

3.3 Git init                                         // Initialize with command. Let this directory program a warehouse that can be managed by git

3.4 git remote add origin warehouse address

git remote add origin git@git.oschina.net:zhiqiangwang/Qiang.git

3.4.1 origin is the alias of your warehouse. Change it as you like, but please be sure not to conflict with the existing warehouse alias

3.4.2 Warehouse addresses are generally supported

3.5 Echo –e “QIANG”>Qiang.txt //Create a new Qiang.txt

3.6 git add Qiang .txt

3.7 git commit –m “add Qiang.txt”

3.8 git push –u origin master //Push the local Qiang warehouse to the remote Qiang

3.9 Echo –e “QIANG QIANG”>>Qiang.txt //Append QIANG QIANG after Qiang.txt

3.10 git add Qiang.txt

3.11 git commit –m “update Qiang.txt”

3.12 git push //Push the local Qiang warehouse to remote Qiang again

个 一 a remote warehouse

git clone git@git.oschina.net: zhiqiangwang/qiang.git

branch management

git Branch wang

git checkout Wang Switch the wang branch

Branch merge

Git merge wang //Merge the wang branch to master

Common problems with merging

1. If both the master branch and the wang branch edit Qiang.txt, a prompt will appear when merging Conflict, please resolve the conflict first before continuing the merge

2. The way to resolve the conflict is to edit Qiang.txt under the master branch and change it to the content of Qiang.txt in the wang branch, then submit Qiang.txt and merge

3. If the changed content of the master branch is what we want, we can edit the content of Qiang.txt, change it to what we want and submit it, switch to the wang branch, and then merge the master branch to the wang branch. The branch name following Merge must be the latest branch

4. Git branch –d wang //Delete the branch

5. Git branch –D wang /If the branch is not merged, force deletion

Principles of using branches

The Master branch is very important. This branch is only used when releasing code online

The Dev branch is specially used for development. The dev branch will be merged into master before important releases are released online

Developers should only be dev On the basis of branching into a personal branch, develop the code in the personal branch, and then merge it into the dev branch

The command to merge the bob branch in the dev branch is

Git checkout dev //Switch the dev branch first

Git merge bob

Keep it on site

Edit wang.txt

in the wang branch and go to the zhi branch to fix the bug, so you need to git add wang.txt

and then git stash to keep it on site

and then switch to the zhi branch to fix it. After fixing the bug, switch back wang branch

Git stash list can view the site we have retained

Git stash apply restore the site

Git syash apply stash@{0} restore to the specified site

Remote branch

git remote –v //View Remote library information

git ls-remote origin//View the remote branch

Push the local branch wang to the remote branch wang and establish an association

a. The remote already has the wang branch and has been associated with the local branch wang and the local branch has been switched to wang

git push

b. The remote already has the wang branch but it is not associated with the local branch wang and the local branch has been switched to wang

git push -u origin /wang

c. The remote does not have the wang branch and the local branch has been switched to wang

git push origin wang: wang

Delete the local branch

git branch –d|-D wang

Delete the remote branch

git push origin :wang

git branch -m | -M oldbranch newbranch Rename the branch, If the newbranch name branch already exists, you need to use -M to force rename, otherwise, use -m to rename.

Tag management

The tag class is based on the snapshot function. It gives a tag to a repository, records the status at a certain moment, and can also restore the status at any time

1. git checkout master First switch to the master

2 . git tag v1.0 Tag master v1.0

3. git tag View all tags

4. git log –-pretty=oneline –-abbrev-commit//View commit history

5. git tag v0.9 d03da//Tag historical commits

6. git tag –a –m “tag just v1.1” d03da//You can describe the tag

7. git tag –d v0.8 Delete tag

8. git push origin v1.0//Push to the specified tag remotely

9. git push --tag origin//Push all tags

10. git tag –d//Delete local tags

11. git push origin : refs/tags/v1.0 Delete the remote tag

Build a git server

1. Yum install git

2. Add a git user and set the shell to /usr/bin/git- shell, the purpose is to prevent git users from logging in remotely

Useradd –s /usr/bin/git-shell

3. Cd /home/git

4. Create the authorized_keys file, change the owner, and the combined permissions, use Save the public key on the client machine

5. Mkdir.ssh

6. ssh-keygen //Use this command to generate a key pair

7. touch authorized_keys

8. cat /home/git/id_rsa. pub>>/home/git/.ssh/authorized_keys.

9. Chown –R git.ssh or Chown 600 .ssh/authorized_keys

10. Define the directory /data/gitroot to store the git repository

Mkdir /data/ gitroot

Cd /data/gitroot

11. Git init –bare sample.git //Create a bare warehouse. The bare warehouse has no workspace. Because the git warehouse on the server is purely for contribution, users are not allowed to log in to the server. Change the workspace, and the git warehouse on the server ends with .git

12. Chown –R git.git sample.git

The above operations are done on the git server. Usually the git server does not allow developers to log in to modify Code, it just acts as a server, just like github, it is usually done on our own PC

Clone the remote warehouse on the client

Git clone git@ip:/data/gitroot/sample .git

You can enter the sample directory at this time. This is where we clone the remote warehouse. Enter here for development, and then push to the remote


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Summary of FAQs for DeepSeek usage Summary of FAQs for DeepSeek usage Feb 19, 2025 pm 03:45 PM

DeepSeekAI Tool User Guide and FAQ DeepSeek is a powerful AI intelligent tool. This article will answer some common usage questions to help you get started quickly. FAQ: The difference between different access methods: There is no difference in function between web version, App version and API calls, and App is just a wrapper for web version. The local deployment uses a distillation model, which is slightly inferior to the full version of DeepSeek-R1, but the 32-bit model theoretically has 90% full version capability. What is a tavern? SillyTavern is a front-end interface that requires calling the AI ​​model through API or Ollama. What is breaking limit

What are the AI ​​tools? What are the AI ​​tools? Nov 29, 2024 am 11:11 AM

AI tools include: Doubao, ChatGPT, Gemini, BlenderBot, etc.

Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Mar 04, 2025 pm 07:00 PM

ElizaOSv2: Empowering AI and leading the new economy of Web3. AI is evolving from auxiliary tools to independent entities. ElizaOSv2 plays a key role in it, which gives AI the ability to manage funds and operate Web3 businesses. This article will dive into the key innovations of ElizaOSv2 and how it shapes an AI-driven future economy. AI Automation: Going to independently operate ElizaOS was originally an AI framework focusing on Web3 automation. v1 version allows AI to interact with smart contracts and blockchain data, while v2 version achieves significant performance improvements. Instead of just executing simple instructions, AI can independently manage workflows, operate business and develop financial strategies. Architecture upgrade: Enhanced A

What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory Mar 05, 2025 pm 12:33 PM

Grayscale Investment: The channel for institutional investors to enter the cryptocurrency market. Grayscale Investment Company provides digital currency investment services to institutions and investors. It allows investors to indirectly participate in cryptocurrency investment through the form of trust funds. The company has launched several crypto trusts, which has attracted widespread market attention, but the impact of these funds on token prices varies significantly. This article will introduce in detail some of Grayscale's major crypto trust funds. Grayscale Major Crypto Trust Funds Available at a glance Grayscale Investment (founded by DigitalCurrencyGroup in 2013) manages a variety of crypto asset trust funds, providing institutional investors and high-net-worth individuals with compliant investment channels. Its main funds include: Zcash (ZEC), SOL,

As top market makers enter the crypto market, what impact will Castle Securities have on the industry? As top market makers enter the crypto market, what impact will Castle Securities have on the industry? Mar 04, 2025 pm 08:03 PM

The entry of top market maker Castle Securities into Bitcoin market maker is a symbol of the maturity of the Bitcoin market and a key step for traditional financial forces to compete for future asset pricing power. At the same time, for retail investors, it may mean the gradual weakening of their voice. On February 25, according to Bloomberg, Citadel Securities is seeking to become a liquidity provider for cryptocurrencies. The company aims to join the list of market makers on various exchanges, including exchanges operated by CoinbaseGlobal, BinanceHoldings and Crypto.com, people familiar with the matter said. Once approved by the exchange, the company initially planned to set up a market maker team outside the United States. This move is not only a sign

Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Mar 12, 2025 pm 01:03 PM

Researchers from Shanghai Jiaotong University, Shanghai AILab and the Chinese University of Hong Kong have launched the Visual-RFT (Visual Enhancement Fine Tuning) open source project, which requires only a small amount of data to significantly improve the performance of visual language big model (LVLM). Visual-RFT cleverly combines DeepSeek-R1's rule-based reinforcement learning approach with OpenAI's reinforcement fine-tuning (RFT) paradigm, successfully extending this approach from the text field to the visual field. By designing corresponding rule rewards for tasks such as visual subcategorization and object detection, Visual-RFT overcomes the limitations of the DeepSeek-R1 method being limited to text, mathematical reasoning and other fields, providing a new way for LVLM training. Vis

Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Mar 05, 2025 pm 02:42 PM

Weekly Observation: Businesses Hoarding Bitcoin – A Brewing Change I often point out some overlooked market trends in weekly memos. MicroStrategy's move is a stark example. Many people may say, "MicroStrategy and MichaelSaylor are already well-known, what are you going to pay attention to?" This is true, but many investors regard it as a special case and ignore the deeper market forces behind it. This view is one-sided. In-depth research on the adoption of Bitcoin as a reserve asset in recent months shows that this is not an isolated case, but a major trend that is emerging. I predict that in the next 12-18 months, hundreds of companies will follow suit and buy large quantities of Bitcoin

See all articles