您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇内容介绍了“Git常用的命令有哪些及怎么用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
一、配置操作
git config --global user.name '你的名字' git config --global user.email '你的邮箱'
git config --local user.name '你的名字' git config --local user.email '你的邮箱
git config --global --list
git config --local --list
git config --unset --global 要删除的配置项
git config --unset --local 要删除的配置项
git status
git add .
git add -A
git add 文件1 文件2 文件3
git diff
git diff 文件
git diff --cached
git diff --cached 文件
git diff HEAD 文件
git commit
git checkout 文件1 文件2 文件3
git reset 文件1 文件2 文件3
git reset --hard
git difftool 提交1 提交2
git ls-files --others
git stash
pop 不保留 stash
apply 保留 stash
git stash pop git stash apply
git stash list
git stash pop stash@{数字n}
git add. git commit --amend
git branch -v
git branch -av
git branch -rv
git checkout 指定分支
git branch 新分支
git branch 新分支 指定分支
git branch 新分支 某个 commit 的 id
git checkout -b 新分支
git branch -d 要删除的分支
git branch -D 要删除的分支
git branch --merged master | grep -v '^\*\| master' | xargs -n 1 git branch -d
git remote prune orign
git merge A分支
git merge A分支 B分支
git rebase B分支
git rebase B分支 A分支
git log --oneline
git log -n
git log --oneline --graph --all
git log 文件
git blame 文件
git tag
git tag v1.0
git tag -a v1.0 -m '前端食堂'
git tag v1.0 commitid
git push origin v1.0
git push origin --tags
git tag -d v1.0
git push origin :refs/tags/v1.0
git remote -v
git remote add url
git remote remove remote的名称
git remote rename 旧名称 新名称
git fetch remote
git pull origin 分支名
git push origin 分支名
git push remote --delete 远端分支名 git push remote :远端分支名
“Git常用的命令有哪些及怎么用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。