美文网首页
git使用tips

git使用tips

作者: 苏小小北 | 来源:发表于2019-03-21 17:27 被阅读0次

创建本地分支:
git checkout -b 分支名
创建本地分支并和远程分支关联:
git checkout -b 本地分支名 origin/远程分支名
提交本地分支到远程分支:
git push origin 本地分支名:远程分支名
删除本地分支:
git branch -d 本地分支名
删除远程分支(慎用):
git push origin -d 远程分支名
添加文件到stage:
git add 文件名(git add .可以添加所有的文件,不包括.gitignore)
commit到本地仓库:
git push -m"本次提交的备注信息"
取消commit并保留修改(commit后的状态转为add后的状态):
git reset --soft HEAD^
取消add的文件:
git reset HEAD 文件名(不加文件名所有都撤销)
在.gitignore文件忽略文件无效,原因是已经添加仓库了,需要删除掉
git rm -r --cached .idea
查看每行文件的历史,line1=开始行,line2=结束行,filepath=文件路径
git blame -L line1,line2 filepath
rebase 操作会修改分支的历史提交记录,尽量不要在公共分支上使用,慎重
git rebase
git 查看某个commit提交信息
git show commitId
git 查看哪些分支包含某个commit
git branch -a contains commitId
查看远程仓库地址
git remote show
git remote show origin

相关文章

  • git使用tips

    创建本地分支:git checkout -b 分支名创建本地分支并和远程分支关联:git checkout -b ...

  • Git Pro

    Git Branching Tips & Tricks Git Tools Interactive Staging...

  • Git私服搭建指南

    一、安装Git 二、创建一个git用户 Tips:1、useradd在使用该命令创建用户是不会在/home下自动创...

  • Git笔记

    Git Commands tips:<*> means required,[*] means optional 基...

  • Git Learning Part 1

    Tips 1.配置git信息git config --global user.name "wirelessqa"g...

  • git tips

    前言 本文档用于收集 git 的使用一些使用技巧。欢迎通过评论的方式分享使用技巧? 禁止导致 master 分支无...

  • Tips for Git

    Tips for Git Git 版本跟 Git 基础操作 一致 快速补全命令 Tab键在命令行输入 git c...

  • Tips of Git

    Disable git branch filter by less

  • The Tips of Git

    经历这个问题已经有一阵了——不知从什么时候起https://stackoverflow.com/questions...

  • Git Tips

    Git 基本操作 比较两个文件的差异在终端使用diff -u oldFile newFile 使用 more fi...

网友评论

      本文标题:git使用tips

      本文链接:https://www.haomeiwen.com/subject/lipcvqtx.html