Git命令

配置用户名和邮箱

git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"

查看 Git 配置信息

git config --list

初始化 Git 仓库

git init

克隆远程仓库

git clone <repository-url>

查看工作区状态

git status

将新文件添加到暂存区

git add <file>

将当前目录下的所有修改添加到暂存区

git add .

提交暂存区中的更改并附加注释

git commit -m "Commit message"

跳过暂存区直接提交

git commit -a -m "Commit message"

删除文件并从暂存区移除

git rm <file>

移动或重命名文件

git mv <old_name> <new_name>

查看提交历史

git log

以简洁格式显示提交历史

git log --oneline

显示指定文件的修改历史

git log -p <file>

图形化展示所有分支提交历史

git log --graph --all --oneline

查看本地分支

git branch

创建一个新分支

git branch <branch_name>

切换到指定分支

git checkout <branch_name>

创建并切换到新分支

git checkout -b <branch_name>

将指定分支合并到当前分支

git merge <branch_name>

删除本地分支

git branch -d <branch_name>

强制删除未合并的分支

git branch -D <branch_name>

查看远程分支

git branch -r

列出远程仓库的 URL

git remote -v

添加一个远程仓库

git remote add <name> <url>

删除远程仓库

git remote remove <name>

将本地分支推送到远程分支

git push <remote> <branch>

拉取并合并远程分支的代码

git pull <remote> <branch>

下载远程分支的更新

git fetch <remote>

推送标签到远程

git push <remote> --tags
相关推荐
铃响十分28 分钟前
make/Makefile、进度条、git
git
念九_ysl1 小时前
git操作
git
画船听雨眠aa1 小时前
git的安装
git
bing_1583 小时前
Git常用命令
git
森林的尽头是阳光17 小时前
git克隆原项目到新目录,保留提交记录分支等,与原项目保持各自独立
git
史嘉庆21 小时前
Git原理与应用(三)【远程操作 | 理解分布式 | 推送拉取远程仓库 | 标签管理】
大数据·分布式·git
fzyz12321 小时前
【书生大模型实战营】Git 基础知识-L0G3000
人工智能·git·深度学习
时光の尘1 天前
个人成长、创作与生活的平衡之旅
linux·c语言·git·stm32·单片机·嵌入式硬件·物联网
凉秋girl1 天前
git常见知识点
git
阿政一号1 天前
Linux初识:【版本控制器Git】【调试器gdb/cgdb使用】
linux·运维·服务器·git·版本控制器·gdb/cgdb