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

What are the commonly used Git commands

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

Share

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

This article mainly explains "What are the commonly used Git commands?" Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let Xiaobian take you to learn "What are the commonly used Git commands?"

1. Branch operations

git branch Create a branch

git branch -b Create and switch to new branch

git checkout Switch branches

git branch View branch list

git branch -v View last operation of all branches

git branch -vv View current branch

git brabch -b branch name origin/branch name Create remote branch to local

git branch --merged View branches merged with the current branch

git branch --no-merged View branches not merged with current branch

git branch -d branch name delete local branch

git branch -D Branch name Forcefully delete branch

git branch origin : branch name delete distant warehouse branch

git merge branch name Merges branches to the current branch

2. temporary operation

git stash temporarily stores the current modification

git stash apply restores the most recent temporary storage

git stash pop restores temporary storage and deletes temporary records

git stash list View Stash list

git stash drop temporary name (e.g. stash@{0}) Remove a temporary name

git stash clear

3. Backward operation

git reset --hard HEAD^Back to previous version

git reset --hard ahdhs1 (commit_id) Go back to a version

git checkout -- file Undo the modified file (if the file is added to the staging area, it will fall back to the staging area; if the file is added to the repository, it will revert to the state after adding the repository)

git reset HEAD file withdraw temporary file modify to workspace

4. tag operation

git tag tag name Add tag (default for current version)

git tag name commit_id tag a commit record

git tag -a tagname-m 'Description' Create a new tag and add a comment

git tag List all tags

git show tag name view tag information

git tag -d tag name Delete local tag

git push origin tag name Push tags to remote repository

git push origin --tags Push all tags to remote repository

git push origin :refs/tags/tagnames Remove tags from remote repositories

5. normal operation

git push origin test Push local branch to remote repository

git rm -r --cached file/folder name cancelled file versioned

git reflog Get executed commands

git log --graph View branch merge graph

git merge --no-ff -m 'merge description' branch name does not merge in Fast forward mode. Merge records can be seen in this way.

git check-ignore -v filename view ignore rule

git add -f file name forces file submission

6. Create Project Warehouse

git init initialization

git remote add origin url Associate remote repository

git pull

git fetch gets all branches from remote repository to local

7. Ignore files that have been added to the repository

git update-index --assume-unchanged file Ignore individual files

git rm -r --cached File/folder name (. Ignore all files)

8. Unignore files

git update-index --no-assume-unchanged file

9. Pull/upload password-free

git config --global credential.helper store

At this point, I believe that everyone has a deeper understanding of "what are the commonly used Git commands". Let's actually operate them! Here is the website, more related content can enter the relevant channels for inquiry, pay attention to us, continue to learn!

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

Internet Technology

Wechat

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

12
Report