search
HomeDevelopment ToolsgitGit commands commonly used in work
Git commands commonly used in workFeb 26, 2019 am 09:30 AM
cgitjavajavascriptphp

This article will share with you 99% of the git commands that can be used at work. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Git commands commonly used in work

Branch operation

1. git branch Create branch

2. git branch -b Create and switch to the newly created branch

3. git checkout Switch branches

4. git branch View branch list

5. git branch - v View the last operation of all branches

6. git branch -vv View the current branch

7. git brabch -b branch name origin/branch name create a remote branch to the local

8. git branch --merged View branches that have been merged with other branches and the current branch

9. git branch --no-merged View branches that have not been merged with the current branch

10 , git branch -d branch name deletes the local branch

11. git branch -D branch name forcibly deletes the branch

12. git branch origin: branch name deletes the remote warehouse branch

13. git merge branch name merges the branch to the current branch

temporary storage operation

1. git stash temporarily stores the current modification

2. git stash apply restores the most recent stash

3. git stash pop restores the stash and deletes the staging record

4. git stash list views the staging list

5. git stash drop temporary storage name (for example: stash@{0}) remove a certain temporary storage

6. git stash clear clear the temporary storage

Rollback operation

1. git reset --hard HEAD^ Roll back to the previous version

2. git reset --hard ahdhs1( commit_id) Fall back to a certain version

3. git checkout -- file undoes the modified file (if the file is added to the temporary storage area, it will be rolled back to the temporary storage area. If the file is added to the repository, Then restore to the state after adding the repository)

4. git reset HEAD file Undo the file modifications in the temporary storage area to the workspace

Label operation

1. git tag tag name adds a tag (default is to the current version)

2. git tag tag name commit_id tags a certain commit record

3. git tag -a tag name -m 'description' Create a new tag and add comments

4. git tag List all tags

5. git show tag name View tag information

6. git tag -d tag name deletes local tags

7. git push origin tag name pushes tags to the remote warehouse

8. git push origin --tags pushes all tags to Remote warehouse

9. git push origin:refs/tags/tag name Delete tags from remote warehouse

Other operations

General operations

1. git push origin test pushes the local branch to the remote warehouse

2. git rm -r --cached file /Folder name cancels the file from version control

3. git reflog gets executed commands

4. git log --graph View branch merge graph

5. git merge --no-ff -m 'merge description' branch name Do not use Fast forward mode to merge. If you merge in this way, you can see the merge record

6, git check-ignore -v file name View ignore rules

7. git add -f file name Force file submission

git creates project warehouse

1. git init Initialization
2. git remote add origin url associates with the remote warehouse
3. git pull
4. git fetch gets all branches in the remote warehouse to the local

ignore Files that have been added to the repository

1. git update-index --assume-unchanged file ignores single files
2. git rm -r --cached file/file Folder name (. Ignore all files)

Cancel ignoring files

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

Password-free pulling and uploading

git config --global credential.helper store

The above is the entire content of this article , I hope it can be helpful to everyone’s study. For more exciting content, you can pay attention to the relevant tutorial columns of the PHP Chinese website! ! !

The above is the detailed content of Git commands commonly used in work. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:思否 segmentfault. If there is any infringement, please contact admin@php.cn delete
C语言中的常量是什么,可以举一个例子吗?C语言中的常量是什么,可以举一个例子吗?Aug 28, 2023 pm 10:45 PM

常量也称为变量,一旦定义,其值在程序执行期间就不会改变。因此,我们可以将变量声明为引用固定值的常量。它也被称为文字。必须使用Const关键字来定义常量。语法C编程语言中使用的常量语法如下-consttypeVariableName;(or)consttype*VariableName;不同类型的常量在C编程语言中使用的不同类型的常量如下所示:整数常量-例如:1,0,34,4567浮点数常量-例如:0.0,156.89,23.456八进制和十六进制常量-例如:十六进制:0x2a,0xaa..八进制

VSCode和VS C++IntelliSense无法工作或拾取库VSCode和VS C++IntelliSense无法工作或拾取库Feb 29, 2024 pm 01:28 PM

VS代码和VisualStudioC++IntelliSense可能无法拾取库,尤其是在处理大型项目时。当我们将鼠标悬停在#Include<;wx/wx.h>;上时,我们看到了错误消息“CannotOpen源文件‘string.h’”(依赖于“wx/wx.h”),有时,自动完成功能无法响应。在这篇文章中,我们将看到如果VSCode和VSC++IntelliSense不能工作或不能提取库,你可以做些什么。为什么我的智能感知不能在C++中工作?处理大文件时,IntelliSense有时

修复Xbox错误代码8C230002修复Xbox错误代码8C230002Feb 27, 2024 pm 03:55 PM

您是否由于错误代码8C230002而无法在Xbox上购买或观看内容?一些用户在尝试购买或在其控制台上观看内容时不断收到此错误。抱歉,Xbox服务出现问题。稍后再试.有关此问题的帮助,请访问www.xbox.com/errorhelp。状态代码:8C230002这种错误代码通常是由于暂时的服务器或网络问题引起的。但是,还有可能是由于帐户的隐私设置或家长控制等其他原因,这些可能会阻止您购买或观看特定内容。修复Xbox错误代码8C230002如果您尝试在Xbox控制台上观看或购买内容时收到错误代码8C

递归程序在C++中找到数组的最小和最大元素递归程序在C++中找到数组的最小和最大元素Aug 31, 2023 pm 07:37 PM

我们以整数数组Arr[]作为输入。目标是使用递归方法在数组中找到最大和最小的元素。由于我们使用递归,我们将遍历整个数组,直到达到长度=1,然后返回A[0],这形成了基本情况。否则,将当前元素与当前最小或最大值进行比较,并通过递归更新其值以供后续元素使用。让我们看看这个的各种输入输出场景&minus;输入&nbsp;&minus;Arr={12,67,99,76,32};输出&nbsp;&minus;数组中的最大值:99解释&nbsp;&mi

中国东方航空宣布C919客机即将投入实际运营中国东方航空宣布C919客机即将投入实际运营May 28, 2023 pm 11:43 PM

5月25日消息,中国东方航空在业绩说明会上披露了关于C919客机的最新进展。据公司表示,与中国商飞签署的C919采购协议已于2021年3月正式生效,其中首架C919飞机已在2022年底交付。预计不久之后,该飞机将正式投入实际运营。东方航空将以上海为主要基地进行C919的商业运营,并计划在2022年和2023年引进总共5架C919客机。公司表示,未来的引进计划将根据实际运营情况和航线网络规划来确定。据小编了解,C919是中国具有完全自主知识产权的全球新一代单通道干线客机,符合国际通行的适航标准。该

C++程序打印数字的螺旋图案C++程序打印数字的螺旋图案Sep 05, 2023 pm 06:25 PM

以不同格式显示数字是学习基本编码问题之一。不同的编码概念,如条件语句和循环语句。有不同的程序中,我们使用特殊字符(如星号)来打印三角形或正方形。在本文中,我们将以螺旋形式打印数字,就像C++中的正方形一样。我们将行数n作为输入,然后从左上角开始移向右侧,然后向下,然后向左,然后向上,然后再次向右,以此类推等等。螺旋图案与数字123456724252627282982340414243309223948494431102138474645321120373635343312191817161514

C语言中的void关键字的作用C语言中的void关键字的作用Feb 19, 2024 pm 11:33 PM

C中的void是一个特殊的关键字,用来表示空类型,也就是指没有具体类型的数据。在C语言中,void通常用于以下三个方面。函数返回类型为void在C语言中,函数可以有不同的返回类型,例如int、float、char等。然而,如果函数不返回任何值,则可以将返回类型设为void。这意味着函数执行完毕后,并不返回具体的数值。例如:voidhelloWorld()

23 年来首次,C# 获得了 TIOBE 2023 年度编程语言奖23 年来首次,C# 获得了 TIOBE 2023 年度编程语言奖Jan 11, 2024 pm 04:45 PM

根据TIOBE编程社区指数,该指数是衡量编程语言受欢迎程度的标准之一,通过收集来自全球工程师、课程、供应商和搜索引擎的数据进行评估。2024年1月TIOBE指数于近日发布,同时官方公布了2023年编程语言排名,C#荣获TIOBE2023年度编程语言,这是23年来C#首次拿下这一荣誉。TIOBE官方新闻稿称,C#已经稳居前10名长达20多年,如今它正在追赶四大语言,成为一年内涨幅最大的编程语言(+1.43%),当之无愧地获得了该奖项。排名第二的是Scratch(+0.83%)和Fortran(+0

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor