跳至主要內容

Git

小于 1 分钟Tools

Git

常用命令

功能命令
查看分支git branch
创建分支git branch name
切换分支git checkout name
创建+切换分支git checkout –b name
合并某分支到当前分支git merge name
删除分支git branch –d name
远程仓库下载新分支和数据git fetch
远程仓库提取数据并尝试合并到当前分支git merge
初始化仓库git init
拷贝一份远程仓库git clone
添加文件到暂存区git add
查看仓库当前的状态,显示有变更的文件。git status
提交暂存区到本地仓库。git commit
回退版本。git reset
查看历史提交记录git log
远程仓库操作git remote
下载远程代码并合并git pull
上传远程代码并合并git push

Tips

回退git远程版本

git 远程分支回滚open in new window

git reset --soft '选择回退版本' # 本地代码回滚到指定版本
git add . # 重新提交
git commit # 重新确定
git push origin --force # 强行上传,就能覆盖之前的提交