1. 03 Feb, 2017 4 commits
  2. 02 Feb, 2017 2 commits
  3. 01 Feb, 2017 1 commit
  4. 31 Jan, 2017 2 commits
  5. 30 Jan, 2017 1 commit
  6. 29 Jan, 2017 1 commit
  7. 27 Jan, 2017 3 commits
  8. 26 Jan, 2017 5 commits
  9. 25 Jan, 2017 9 commits
  10. 24 Jan, 2017 10 commits
  11. 23 Jan, 2017 1 commit
  12. 21 Jan, 2017 1 commit
    • Andrii Shyshkalov's avatar
      Fix git cl on windows for git-numberer repos. · 351c61da
      Andrii Shyshkalov authored
      Git cl decides if git-numberer is enabled on a repository by writing
      Gerrit's project.config from refs/meta/config into a tempfile, which is
      then queried using `git config -f tempfile --get ...`.  The file itself
      is only flushed, but not closed after writing because Python's
      tempfile.NamedTemporaryFile is deleted on closing. This worked fine on
      Linix/Mac, but not on Windows, where `git config` apparently doesn't see
      file or its contents.
      
      This CL rewrites the above using yet another contexmanager temp
      directory into which a file is written and closed before git config is
      ran.
      
      R=machenbach@chromium.org,grt@chromium.org
      BUG=683202
      
      Change-Id: I7974d66b1b2b0478ab4b6f7ac04e547a4981c46c
      Reviewed-on: https://chromium-review.googlesource.com/430719
      Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
      Reviewed-by: 's avatarVadim Shtayura <vadimsh@chromium.org>
      351c61da