Which git commit corresponds to the Rails 4.0.0 gem version

I am trying to make a git bisect on something that works with the 4.0.0 gem version of Rails and is broken in the `4-0-stable branch`.(`default_scope` broken on `4-0-stable` branch (working in version 4.0.0) · Issue #12417 · rails/rails · GitHub)

Normally I would expect a tag called `v4.0.0`, however there is no such tag in the rails repository.

Oddly enough there is a branch called `4-0-0` (in addition to the `4-0-stable` branch), but that branch cannot be the source of the gem either, since the file `RAILS_VERSION` contains

    4.0.0.rc2

Any help is appreciated.

Jarl

There is a tag for v4.0.0: https://github.com/rails/rails/tree/v4.0.0

Maybe you made a typo?

fxn@yeager:~/prj/rails/rails (master)$ git tag | grep v4

v4.0.0

v4.0.0.beta1

v4.0.0.rc1

v4.0.0.rc2

https://github.com/rails/rails/tree/v4.0.0

hmmm...

I thought that a standard `git fetch` fetched all remote tags as well, apparently I needed to use `git fetch --tags` to get the latest tags... After that I got v4.0.0

Thanks a lot.

Jarl