git init:
cd my_project/ # 进入项目目录
git init # 初始化一个新的Git仓库
git clone
git clone https://github.com/git/git.git # 克隆远程仓库到本地
git add
git add new_file.txt # 将new_file.txt添加到暂存区
git add . # 将所有更改的文件添加到暂存区
git commit -m "
git commit -m "Add new_file.txt" # 提交暂存区中的更改,并添加提交消息
git status:
git status # 查看工作区和暂存区的状态
git log:
git log # 查看提交历史记录
git pull:
git pull origin master # 拉取远程master分支的最新更改并合并到当前分支
git push:
git push origin master # 将本地提交推送到远程master分支
git branch:
git branch # 查看所有分支及当前所在的分支
git branch new_branch # 创建一个名为new_branch的新分支
git checkout
git checkout new_branch # 切换到new_branch分支
git merge
git merge new_branch # 将new_branch分支的更改合并到当前分支
git remote add
git remote add origin https://github.com/user/repo.git # 添加远程仓库到本地Git配置
git remote -v:
git remote -v # 查看配置的远程仓库列表
git diff:
git diff # 查看当前未暂存的更改
git reset
git reset new_file.txt # 取消已暂存文件的更改
评论 (0)