常用git命令

基本命令

命令名称 作用
git config --global user.name 用户名 设置用户签名
git config --global user.email 邮箱 设置用户签名
git init 初始化本地库
git status 查看本地库状态
git add 添加到暂存区
git commit -m "日志信息" 文件名 提交到本地库
git reflog 查看历史记录
git reset --hard 版本号 版本穿梭
git rm --cached 文件名 删除暂存区文件

branch(分支命令)

命令 作用
git branch <分支名> 创建分支
git branch -v 查看分支
git merge <分支名> 把指定的分支合并到当前分支上
git branch -m <old_name> <new_name> 重命名
git checkout <分支名> 切换分支
git checkout -b <分支名> 创建并切换分支

远程仓库

命令 作用
git remote -v 查看当前所有远程仓库别名
git remote add 别名 远程仓库 起别名
git remote rename <old_name> <new_name> 重命名
git push <远程主机名> <本地分支名>:<远程分支名> 推送本地分支上的内容到远程仓库
git clone 远程地址 将远程仓库的内容克隆到本地
git pull <远程主机名> <远程分支名>:<本地分支名> 将远程仓库对应分支最新内容拉取下来后与当前本地分支直接合并
作者

swallow

发布于

2022-05-20

更新于

2022-05-20

许可协议

评论