【基础篇】Git 基础命令与核心概念
# 安装Git
sudo apt-install git -y
# 配置Git的用户名和邮箱
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
# 初始化新的Git仓库
git init
# 克隆远程仓库到本地
git clone https://github.com/username/repository.git
# 查看当前仓库的状态
git status
# 添加文件到暂存区
git add filename
# 添加所有文件到暂存区
git add .
# 提交暂存区的变更
git commit -m "Commit message"
# 推送到远程仓库
git push origin main
# 拉取远程仓库的变更
git pull origin main
# 创建分支
git branch branchname
# 切换到分支
git checkout branchname
# 创建并切换到新分支
git checkout -b branchname
# 合并分支
git merge branchname
# 查看提交历史
git log
# 撤销更改(暂存区到工作目录)
git reset HEAD filename
# 撤销提交(重置到指定的提交)
git reset --hard commit_hash
这些是使用Git时的基本命令和概念。在实际使用中,你可能还需要处理更复杂的情况,如解决冲突、使用标签、设置远程仓库等,但这些是使用Git的基础。
评论已关闭