Git知识介绍
Section 1: Git安装与配置
- 访问Git官网(https://git-scm.com/)下载适用于您操作系统的Git安装包
- 根据提示安装Git
- 打开命令行界面,输入
git --version
验证是否安装成功
- 配置全局用户名和邮箱
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
Section 2: Git基本操作
- 创建新仓库
- 克隆远程仓库
git clone <repository_url>
- 添加文件
- 提交更改
git commit -m "commit message"
- 推送更改到远程仓库
- 获取远程仓库更新
- 查看提交历史
Section 3: Git分支管理
- 创建分支
- 切换分支
- 合并分支
- 先切换到主分支
git checkout <main_branch>
- 执行合并操作
git merge <branch>
- 删除分支
- 查看所有分支
git branch
- 查看本地和远程分支:
git branch -a
- 推送分支到远程仓库
- 拉取远程分支并创建本地分支
git fetch origin <remote_branch>:<local_branch>
- 删除远程分支
git push origin --delete <branch>