|-----------------------------------|---------------|
| 命令 | 描述 |
| git branch | 查看分支; |
| git branch 分支 | 创建分支; |
| git branch -D 分支 | 删除分支; |
| git checkout 分支 | 切换分支; |
| git checkout -B 分支 | 创建并切换分支; |
| git switch 分支 | 切换分支; |
| git switch -C 分支 | 创建并切换分支; |
| git log | 查看提交历史; |
| git reflog | 查看提交历史树状; |
| git reset --hard 版本 | 版本回退; |
| git config --global user.name | 查看git的用户名称; |
| git config --global user.name 名称 | 设置git的用户名称; |
| git config --global user.email | 查看git的用户邮箱; |
| git config --global user.email 邮箱 | 设置git的用户邮箱; |
| git status | 查看更改的文件状态; |
| git add . | 提交全部更改文件到缓存区; |
| git add 文件 | 提交指定更改文件到缓存区; |
| git commit -m "描述" | 提交到缓存区的描述; |
| git pull | 拉取远程仓库代码; |
| git push | 提交到远程仓库代码; |
| git remote -v | 查看远程仓库信息; |
| git remote add 远程仓库链接 | 本地连接远程仓库; |
| git remote add 远程仓库链接/origin | 本地连接并关联远程仓库; |
| git remote rm 远程仓库链接 | 本地删除远程仓库; |
git常用命令
前端小凯2024-09-12 22:45
相关推荐
周星星_少年只有一个面5 小时前
git入门环境搭建五味香5 小时前
Linux学习,ip 命令aPurpleBerry6 小时前
【问题解决】Github上手动Delete file之后, git remote add+git push出错M_emory_8 小时前
解决 git clone 出现:Failed to connect to 127.0.0.1 port 1080: Connection refused 错误Make_magic8 小时前
Git学习教程(更新中)不穿铠甲的穿山甲8 小时前
git-.git目录解析唔知小罗17 小时前
git config是做什么的?不是鱼1 天前
新人程序猿必备的git技能(超实用基础版)Exclusive_Cat1 天前
Git的使用(基础语句)江上清风山间明月1 天前
git撤销、回退某个commit的修改