1. 05 Mar, 2019 4 commits
  2. 03 Mar, 2019 1 commit
  3. 02 Mar, 2019 2 commits
    • Martin Delille's avatar
      8e202e28
    • James E. Blair's avatar
      Fix renames over redirects (#6216) · a5604b16
      James E. Blair authored
      
      In #6211, we started creating repo_redirects for ownership transfers,
      however that opens an edge case where a user might perform the
      following sequence:
      
      rename org1/repo1 -> org1/repo2  (creates org1/repo1 redirect)
      transfer org2/repo1 -> org1/repo1 (org1/repo1 redirect continues to exist)
      rename org1/repo1 -> org1/repo3 (fails due to existing org1/repo1 redirect)
      
      This change ensures that each time we rename or transfer a repo,
      we delete any existing redirects at the target location.  This
      already happens when a new repo is created.  By doing this we ensure
      that we'll never have both a repo and a redirect at the same location.
      Signed-off-by: default avatarJames E. Blair <jeblair@redhat.com>
      a5604b16
  4. 01 Mar, 2019 3 commits
  5. 28 Feb, 2019 7 commits
  6. 27 Feb, 2019 5 commits
  7. 26 Feb, 2019 3 commits
  8. 25 Feb, 2019 3 commits
  9. 24 Feb, 2019 2 commits
  10. 23 Feb, 2019 2 commits
  11. 22 Feb, 2019 2 commits
  12. 21 Feb, 2019 5 commits
  13. 20 Feb, 2019 1 commit
    • John Olheiser's avatar
      Makefile changes for Windows and easier development (#6103) · eaf9ded1
      John Olheiser authored
      * Added Go Path and node_modules to PATH
      * Uses npx now for generate-stylesheets
      * Uses `go env GOPATH` to calculate adding GOPATH/bin to PATH
      * Added note about installing Node 8.0+ to generate stylesheets
      * Added preferred Node version to CONTRIBUTING.md
      eaf9ded1