GitHub常用命令

GitHub常用命令

远程仓库相关命令

拉取项目到本地

shell 复制代码
git clone [url]

拉取远程仓库

shell 复制代码
git pull [remoteName] [localBranchName]

推送远程仓库

shell 复制代码
git push [remoteName] [localBranchName]

分支操作相关命令

查看所有本地分支

shell 复制代码
git branch

查看所有远程分支

shell 复制代码
git branch -r

查看所有本地分支和远程分支

shell 复制代码
git branch -a

切换分支

shell 复制代码
git checkout [分支名称]

创建本地分支

shell 复制代码
//注意:新分支创建后不会自动切换为当前分支
git branch name

创建远程分支(本地分支push到远程)

shell 复制代码
git push origin [分支名称]

创建新分支并切换到新分支

shell 复制代码
git checkout -b  [分支名称]

合并指定分支到当前分支

shell 复制代码
git merge [分支名称]

删除分支

shell 复制代码
git branch -d [分支名称]

代码提交相关命令

提交至暂存区

shell 复制代码
git stash save [message]

恢复暂存区代码

shell 复制代码
git stash apply

提交暂存区到仓库区

shell 复制代码
git commit -m [message]

查看信息

显示有变更的文件

shell 复制代码
git status

显示当前分支的版本历史

shell 复制代码
git log

显示commit历史

shell 复制代码
git log --stat

版本(tag)操作相关命令

创建版本

shell 复制代码
git tag [name]

查看所有版本

shell 复制代码
git tag

查看tag信息

shell 复制代码
git show [tag]

删除本地版本

shell 复制代码
git tag -d [name]
相关推荐
不能只会打代码3 小时前
大学课程项目中的记忆深刻 Bug —— 一次意外的数组越界
java·github·intellij-idea·话题博客
Web极客码14 小时前
如何修复WordPress卡在维护模式
服务器·网络·github
油泼辣子多加20 小时前
2024年11月17日Github流行趋势
github
海里有太阳20 小时前
gitHub常用操作
github
量子孤岛20 小时前
建立独一无二的GitHub Profile
github
小小宇宙中微子1 天前
QDUOJ(青岛大学在线评测系统)
github
Smilejudy1 天前
从 ES Kafka Mongodb Restful ... 取到 json 之后
后端·github
明天最后1 天前
由于Two-Factor Authentication导致github发布npm包失败
前端·npm·github
n***85941 天前
GitHub 开源项目 Puter :云端互联操作系统
github
“αβ”1 天前
在Linux下配置gitee与Github的远程仓库
linux·gitee·github