Git log和reflog】的更多相关文章

1.log  log命令可以显示所有提交过的版本信息.显示信息如下: Administrator@USER-20171026MG MINGW64 ~/Desktop/lyf (master) $ git log commit e1bdff6e4830e09383078c860f45334d03771b03 (HEAD -> master) Author: lyf1995 <506833107@qq.com> Date: Sat Dec 16 11:47:59 2017 +0800 第二次…
git reflog 和git log的区别,外加git cherry-pick的一种用法 git reflog 可以查看所有分支的所有操作记录(包括(包括commit和reset的操作),包括已经被删除的commit记录,git log则不能察看已经删除了的commit记录 具体一个例子,假设有三个commit, git st: commit3: add test3.c commit2: add test2.c commit1: add test1.c 如果执行git reset --hard…
1.git log  log命令可以显示所有提交过的版本信息.显示信息如下: $ git log commit e1bdff6e4830e09383078c860f45334d03771b03 (HEAD -> master) Author: lyf1995 <@qq.com> Date: Sat Dec :: + 第二次提交 commit 62e67397d7891610ed7db7edab0e10619d9d8f0e Author: lyf1995 <@qq.com> D…
git log: commit 的版本日志 包含提交的版本 操作者 日期 (方便查看commit的版本,但是版本回退后,使用git log 看不到回退版本号之后的版本记录) commit ce0d69899b65fb22708f2f4ef48de11a05d0acc2Author: lowmanisbusy <910472036@qq.com>Date: Thu May 17 23:40:36 2018 +0800 a=6 commit 1a6539661ef6c37257833e702ed2…
最近做了个骚操作 git checkout commitId 修改了部分内容 git add . git commit -m '修改了些东西'   -> 此时git 会自动生成一个新的 commitId,姑且称之为 newCommitId git checkout 分支A 而我的 newCommitId 的内容并没有merge 到 分支A 上,这时候,我又想切回到 newCommitId 上,但是我又忘了 Id 内容怎么办? 如果这种情况下,使用 git log  是查找不出来的.因为没有 me…
感谢原文作者:杨鲜生 原文链接:https://blog.csdn.net/u013252047/article/details/80230781 用git命令,想看到自己的操作记录,则可以使用log与reflog,它两个的区别如下: 1.git log 命令可以显示所有提交过的版本信息 例如 如果感觉太繁琐,可以加上参数 --pretty=oneline,只会显示版本号和提交时的备注信息 2. git reflog 可以查看所有分支的所有操作记录(包括已经被删除的 commit 记录和 res…
转载于:https://havee.me/linux/2015-05/git-pretty-output.html 美化完的格式: git log --graph --pretty=format:'%C(yellow)%h%Creset -%C(cyan)%d%Creset %s %Cgreen(%an, %cr)' --abbrev-commit 写入 ~/.gitconfig 中: git config --global alias.ll "log --graph --pretty=form…
查看commit 提交日志 $ git log $git log --pretty=oneline $git reflog 显示所有提交记录,包括已经回退的提交,如图:提交了abc 和 bb 然后回退到 abc $git log  只显示abc提交  可以使用 $git reset --hard commit号 回退到bb git reflog和git cherry-pick找回已删除的commit记录 git cherry-pick用于把另一个本地分支的commit修改应用到当前分支. 办法之…
git已经变成了很多程序员日常工具之一. git log是查看git历史的好工具,不过默认的格式并不是特别的直观. 很多时候想要更简便的输出更多或者更少的信息,这里列出几个git log的format. 可以根据自己的需要定制. git log命令可一接受一个--pretty选项,来确定输出的格式. 如果我们只想输出hash. git log --pretty=format:"%h" git用各种placeholder来决定各种显示内容: 下面内容来自这里 %H: commit has…
默认git log 出来的格式并不是特别直观,很多时候想要更简便的输出更多或者更少的信息,这里列出几个git log的format. 可以根据自己的需要定制. git log命令可一接受一个--pretty选项,来确定输出的格式. 比如 : 如果我们只想输出hash. git log --pretty=format:"%h" 详细 命令 : %H: commit hash %h: 缩短的commit hash %T: tree hash %t: 缩短的 tree hash %P: pa…