码迷,mamicode.com
首页 > 其他好文 > 详细

常用 Git 命令

时间:2020-03-28 21:33:05      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:分支   fetch   message   _id   rev   pull   本地   常用   git pull   

Branch

# 列出远程分支
git branch -r

# 删除远程分支
git push -d origin {branch_name}
git push origin :{branch_name}

# 删除本地分支
git branch -D {branch_name}

# 推送到指定的上游
git push -u origin --all

Commit

# 撤销本地最后一次 commit
git reset --soft HEAD~1

# 查找包含某个 commit 的分支
git branch --contains {commitid}

# 拷贝一个 commit 到当前分支
git cherry-pick {commit_id}

# 放弃本地版本,以远程版本为准
git fetch origin
git reset --hard origin/{branch_name}
git pull

# 回滚提交
git revert {commit_id}

Stash

# 暂存
git stash save "message ..."

# 暂存未跟踪文件
git stash --include-untracked

其他

# 清理目录
git clean -fxd -q

常用 Git 命令

标签:分支   fetch   message   _id   rev   pull   本地   常用   git pull   

原文地址:https://www.cnblogs.com/nehcdahc/p/12589459.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!