首页 > 其他分享 >git专题-常用命令

git专题-常用命令

时间:2023-02-11 21:56:04浏览次数:34  
标签:专题 -- git master branch 常用命令 hotfixes 分支

一、常用命令

git config --global user.name "yyy"  # 配置用户名
git config --global user.email "[email protected]"  # 配置邮件
git config --global color.ui true  # git status等命令自动着色
git config --global --unset http.proxy  # remove  proxy configuration on git

1.2. 拉取相关

git init  # 初始化本地git仓库(创建新仓库)
git clone git+ssh://git@xxx/VT.git  # clone远程仓库
git status   # 查看当前版本状态

1.3. 提交相关

git add xyz  # 添加xyz文件至index
git add .  # 增加当前子目录下所有更改过的文件至index
git commit -m 'yyy'    # 提交
git commit --amend -m 'yyy'         # 合并上一次提交(用于反复修改)
git commit -am 'yyy'    # 将add和commit合为一步

        

1.4. 日志相关

git log  # 显示提交日志
git log -1  # 显示1行日志 -n为n行
git log --stat  # 显示提交日志及相关变动文件
git log -p -m

        

1.5. 标签相关

git tag  # 显示已存在的taggit tag -a v2.0 -m 'yyy'  # 增加v2.0的taggit show v2.0  # 显示v2.0的日志及详细内容git log v2.0  # 显示v2.0的日志

1.6. 对比相关

git diff  # 显示所有未添加至index的变更
git diff --cached  # 显示所有已添加index但还未commit的变更
git diff HEAD^    # 比较与上一个版本的差异
git diff HEAD -- ./lib  # 比较与HEAD版本lib目录的差异
git diff origin/master..master  # 比较远程分支master上有本地分支master上没有的
git diff origin/master..master --stat  # 只显示差异的文件,不显示具体内容

1.7. 分支相关

git branch  # 显示本地分支
git branch --merged  # 显示所有已合并到当前分支的分支
git branch --no-merged  # 显示所有未合并到当前分支的分支
git branch -m master master_copy  # 本地分支改名
git branch --contains 50089  # 显示包含提交50089的分支
git branch -a  # 显示所有分支
git branch -r  # 显示所有原创分支
  1. git branch -d hotfixes/BJVEP933 
  2.  # 删除分支hotfixes/BJVEP933(本分支修改已合并到其他分支)
git branch -D hotfixes/BJVEP933 # 强制删除分支hotfixes/BJVEP933

1.8. 检出相关

git checkout -b master_copy  # 从当前分支创建新分支master_copy并检出
git checkout features/performance  # 检出已存在的features/performance分支
  1. git checkout --track hotfixes/BJVEP933
  2. # 检出远程分支hotfixes/BJVEP933并创建本地跟踪分支
git checkout v2.0 # 检出版本v2.0 git checkout -b master master_copy  # 上面的完整版 git checkout -b devel origin/develop # 从远程分支develop创建新本地分支devel并检出 git checkout -- README # 检出head版本的README文件(可用于修改错误回退)

1.9. 提交相关

git push origin master  # 将当前分支push到远程master分支
git push --tags  # 把所有tag推送到远程仓库
git fetch  # 获取所有远程分支(不更新本地分支,另需merge)
git push origin :hotfixes/BJVEP933  # 删除远程仓库的hotfixes/BJVEP933分支
git fetch --prune  # 获取所有原创分支并清除服务器上已删掉的分支
git pull origin master  # 获取远程分支master并merge到当前分支

  2.0. 暂存相关

git stash  # 暂存当前修改,将所有至为HEAD状态
git stash list  # 查看所有暂存
git stash apply stash@{0}  # 应用第一次暂存
git stash show -p stash@{0}  # 参考第一次暂存

  2.1. 显示相关

git show dfb02e6e4f2f7b573337763e5c0013802e392818  # 显示某个提交的详细内容
git show dfb02  # 可只用commitid的前几位
git show HEAD  # 显示HEAD提交日志
git show HEAD^  # 显示HEAD的父(上一个版本)的提交日志 ^^为上两个版本 ^5为上5个版本       

 

来源:https://blog.csdn.net/m0_60559048/article/details/128131766

标签:专题,--,git,master,branch,常用命令,hotfixes,分支
From: https://www.cnblogs.com/konglxblog/p/17112657.html

相关文章

  • GitLab CICD Day 20 - 部署 Image 到服务器上
    ​​1. 服务部署到目标服务器上​​(多次部署同一个服务时,会失败,因为会端口冲突)variables:user:ericpwd:Admin@1234harbor:http://172.16.128.215:8080image_he......
  • GitLab CICD Day 17 - Image递增版本号 - 2
    新增build版本号variables:user:ericpwd:Admin@1234harbor:http://172.16.128.215:8080image_hellocat:172.16.128.215:8080/hive/hellocatstages:-testing......
  • GitLab CICD Day 19 - SSH免密登录远程服务器 *
    服务器免密:生成ssh-key(服务器A&B)[root@qaonpremise]#ssh-keygenGeneratingpublic/privatersakeypair.Enterfileinwhichtosavethekey(/root/.ssh/id_rs......
  • rror: error:0308010C:digital envelope routines::unsupported
    node版本太高  添加两句话参考文档:(101条消息)Error:error:0308010C:digitalenveloperoutines::unsupported错误解决_特级忍者猪的博客-CSDN博客......
  • git - 安装地址,基本命令,设置配置,
    1.Git安装地址:https://git-scm.com/downloads 2.基本命令#查看配置gitconfig-l#查看Git所有配置gitconfig--system--list#查看系统配置gitconfig--global......
  • Linux常用命令之帮助和用户管理命令
    1、帮助命令一、获得命令或配置文件帮助信息:man ①、命令名称:man ②、英文原意:manual ③、命令所在路径:/usr/bin/man ④、执行权限:所有用户 ⑤、功能描述......
  • Kubernetes 常用命令
    Master节点常用命令重启apiserver#获得apiserver的pod名字exportapiserver_pods=$(kubectlgetpods--selector=component=kube-apiserver-nkube-system--output=......
  • Linux常用命令(自己维护用)
    文件操作显示文件的树状结构:tree与此同时,显示当前文件的树状结构:tree-d如下:  显示文件目录:ls与此同时,显示文件目录并显示详细信息:ls-lhls-all......
  • Git 冲突的产生与解决
    冲突的产生与解决 内容介绍:冲突的概念案例介绍解决冲突  冲突的概念git在使用中,如果遵循了它的使用的步骤,比如,在上班之前先去拉取,下班的时候,先提......
  • GitLab CICD Day 17 - Image自动递增版本号
    新建deno.json​Gitlab-runner上安装jq[root@qaonpremise]#yum-yinstalljqLoadedplugins:fastestmirror,langpacks,product-id,search-disabled-repos,subscript......