Skip to content

Git常用命令

luoml edited this page Sep 6, 2017 · 5 revisions

日志

一行显示分支合并历史、缩略提交校验码 (SHA-1)

git log --graph --pretty=oneline --abbrev-commit

显示近两次更新的内容差异

git log -p -2

一行显示自 2017-08-20 之后作者为 luoml 的日志记录

git log --oneline --committer=luoml --since="2017-08-20"

分支

查看所有分支

git branch -a

查看本地仓库分支

git branch

查看远程仓库分支

git branch -r

创建分支

git branch <branchName>

切换分支

git checkout <branchName>

创建并切换到该分支

git checkout -b <branchName>

仓库迁移

查看远程仓库 URL(假设 remote 是 origin)

git remote get-url origin

重新设置远程仓库 URL

git remote set-url origin [new_remote_git_url]
Clone this wiki locally