一些常用到的git命令

git stash -a //缓存所有文件

git checkout -b dev origin/dev //切换到dev分支上,接着跟远程的origin地址上的dev分支关联起来

//推送本地分支到远程仓库

git push origin localbranchname:remotebrancname

git revert onefile //https://www.freecodecamp.org/news/git-revert-file-reverting-a-file-to-a-previous-commit/

//Git中获取当前分支名git

git branch --show-current

//git从指定的commit创建分支

git checkout -b branchname <commit-hash>

//以下两个命令需要在git bash下执行,因为window下找不到grep\xargs命令

//This script will delete all local branches except the master branch, including the non-merged branches.

git for-each-ref --format '%(refname:short)' refs/heads | grep -v "master\|main\|develop" | xargs git branch -D

//The -d is a soft delete option and only removes the merged branches.

git for-each-ref --format '%(refname:short)' refs/heads | grep -v "master\|main\|develop" | xargs git branch -d

//合并某个提交

git cherry-pick <commit-hash>

//列出包含某个提交的所有标签

git tag --contains f3a0b78

//克隆某个Tag的代码

git clone -b v9.2.2 https://gitlab.kitware.com/vtk/vtk.git

//回滚到某个提交

git log --oneline

git reset --hard <commit-hash>

git checkout -b branchname

git push origin localbranchname:remotebranchname

相关推荐
打点计时器3 小时前
Git快速上手教程
git
我才是一卓3 小时前
linux 安装简易 git 服务端并使用
linux·运维·git
IDIOT___IDIOT5 小时前
关于 git 进行版本管理的时候 gitignore 写入忽略规则而不生效的问题
大数据·git·elasticsearch
不想看见4045 小时前
Git 误删急救手册
大数据·git·elasticsearch
偷懒下载原神5 小时前
【linux操作系统】信号
linux·运维·服务器·开发语言·c++·git·后端
IT二叔5 小时前
Git Flow03-发布流程
git
IT二叔5 小时前
Git Flow08-摘樱桃
git
「QT(C++)开发工程师」7 小时前
Git误操作急救手册大纲
git
贺小涛8 小时前
Git代码提交规范和踩坑排水明沟
大数据·git·elasticsearch
IT二叔8 小时前
Git Flow02-开发步骤
git