On Fri, Jun 23, 2017 at 10:10:15AM -0500, Terry Brown wrote:
On Fri, 23 Jun 2017 07:42:29 -0700 (MST) alvinpenner <penner@...1856...> wrote:
However, it does not exactly answer my question. Assume that someone has reported that a bug was fixed in commit number: '0edfdf95' How would I find out when this was done? In other words, what is the
If you just want to relate git hashes to dates:
git log --pretty='format:%H %ci'
this would istantly show you that commit (I personally find `show` more useful than `log` for this use case): git show 0edfdf95 If you want to change the current working tree to that commit so you can e.g. try to build it there and do whatever you want to do: git checkout 0edfdf95
I can see that you feel a bit lost with git. It's just a different program with its own options that are different than bzr's, don't feel angry toward it :)