Git定位到历史Commit

查看某个时间段内的提交

 git log --after="2020-03-30 00:00:00" --before="2020-03-30 23:59:59"

查看某人的提交

git log --author "name"

根据commitId创建新分支

git checkout commitId-b branchname

切换分支

git checkout branchname

你可能感兴趣的:(Git)