Hi Chromium Developers,
We've started the Chromium Git migration. The tree has been closed and we're taking systems offline.
We'll send another email when we've completed the maintenance.
Thanks!
Chase
Congrats, looks like this went very smoothly :-)
The cs.chromium.org "View In>Annotate" and "View In>Revision log" links still point to ViewVC (example: https://code.google.com/p/chromium/codesearch#chromium/src/ash/accessibility_delegate.h&sq=package:chromium&type=cs -> http://src.chromium.org/viewvc/chrome/trunk/src/ash/accessibility_delegate.h?view=log#revHEAD ). The ViewVC data is now out-of-date and doesn't have any changes newer than last Friday, right?
To unsubscribe from this group and stop receiving emails from it, send an email to blink-dev+...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/infra-dev/CAKcCwFOayHO0ftU4mWyNLwHrPwARo1%2BmkZ-t54vK%3DA25a-fFWw%40mail.gmail.com.--
You received this message because you are subscribed to the Google Groups "infra-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to infra-dev+...@chromium.org.
To post to this group, send email to infr...@chromium.org.
Huge congrats guy! Finally the day has come!
--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
Yes, that is a known issue from before the migration. Dan and Robert plan to work on this early this week.
On Sunday, August 24, 2014, PhistucK <phis...@gmail.com> wrote:
omahaproxy.appspot.com shows None or N/A under the various base revision columns (other than the WebKit one, which is weird, given that WebKit is not under Git and it shows a hash!)... :(
--
You received this message because you are subscribed to the Google Groups "infra-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to infra-dev+...@chromium.org.
To post to this group, send email to infr...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/infra-dev/op.xk6yp4dmrbppqq%40cicero.linkoping.osa.
FYI you don't actually need omahaproxy for the revision lookup.Now that everything is gitorious, one of the good sides of a DVCS is that you can access all the knowledge you want at the speed of your SSD :)If you want to get the SHA of a given release (in the snapshot release branch), just$ git rev-list -1 36.0.1985.125 (or git log 36.0.1985.125 for the full history)
If you want to get the branch point's SHA (in trunk) of a given release:$ git merge-base 36.0.1985.125 origin/master
If you want to get the log of changes cherry-picked into the release branch (for the main project):$ git log origin/master..36.0.1985.125Provided that you have pulled the branch heads and tags (gclient sync --with_branch_heads && git remote update)Essentially there is a Git tag named after the release number for each release build, and a remotes/branch-heads/NNN for every regular branch attempt (the one that become eventually promoted to be the branch point).
Tagged releases should contain .DEPS.git public buildspec files... +mmoss for more.
Aaron
--
You received this message because you are subscribed to the Google Groups "infra-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to infra-dev+unsubscribe@chromium.org.
To post to this group, send email to infr...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/infra-dev/CAKVx%2B1pcTk4nwqMOvgXBvR8QHMjLMio3WKwE1DL3Zyx6hso_5A%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to infra-dev+...@chromium.org.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/infra-dev/CAH58R2fi_rfsPgsKVRtUzHR9fj8N02O8V4-r8dUuszyow8DMGg%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/infra-dev/CA%2ByH71cK1EoPwDk8rt-dS6ND-pVW2LuEsk_65hXygMLL7H0iBA%40mail.gmail.com.
Discussion with infra devs indicates that ignoring .DEPS.git is a bug and not the intended behavior. Fixing.