Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git-fetch-with-cli doesn't work well with custom registries #6241

Closed
sfackler opened this issue Oct 30, 2018 · 5 comments · Fixed by #6242
Closed

git-fetch-with-cli doesn't work well with custom registries #6241

sfackler opened this issue Oct 30, 2018 · 5 comments · Fixed by #6242

Comments

@sfackler
Copy link
Member

The git repository URLs for custom registries are currently forbidden from containing credentials. Unfortunately, that interacts poorly with the git-fetch-with-cli option since command-line git will default to using your username as the username when authenticating. However, a common configuration (e.g. with Github) is to use a single user named git for all users, so you end up with an error:

    Updating crates.io index
    Updating `ssh://my-git-server/my-registry-index` index
sfackler@my-git-server: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
error: failed to load source for a dependency on `some-crate`

Caused by:
  Unable to update registry `ssh://my-git-server/my-registry-index`

Caused by:
  failed to fetch `ssh://my-git-server/my-registry-index`

Caused by:
  process didn't exit successfully: `git fetch --tags --quiet 'ssh://my-git-server/my-registry-index' 'refs/heads/master:refs/remotes/origin/master'` (exit code: 128)

Note how the Permission denied message tried sfackler@my-git-server rather than git@my-git-server which would have worked.

It seems like we should relax the restriction on credentials in custom registry configurations to only forbid passwords and not usernames.

@alexcrichton
Copy link
Member

Hm interesting!

Can you try running with -v as well? That should hopefully print the git command that's executed

@sfackler
Copy link
Member Author

That's down on the last line:

git fetch --tags --quiet 'ssh://my-git-server/my-registry-index' 'refs/heads/master:refs/remotes/origin/master'

@alexcrichton
Copy link
Member

Er right, sorry!

Since that doesn't work, can the user be specified in the url when configuring?

@sfackler
Copy link
Member Author

Nope, allowing that is the proposed fix :P

error: failed to parse manifest at `/Volumes/git/chatter/chatter/Cargo.toml`

Caused by:
  Registry URLs may not contain credentials

@alexcrichton
Copy link
Member

Sorry I'm definitely a bit slow today...

Seems like a solid use case to me to relax the restriction!

sfackler added a commit to sfackler/cargo that referenced this issue Oct 31, 2018
We want to forbid secrets since they'll commonly end up checked into
source control, but usernames are fine (and are commonly going to be
`git`).

Closes rust-lang#6241
bors added a commit that referenced this issue Nov 1, 2018
Allow usernames in alt registry URLs

We want to forbid secrets since they'll commonly end up checked into
source control, but usernames are fine (and are commonly going to be
`git`).

Closes #6241

r? @alexcrichton
@bors bors closed this as completed in #6242 Nov 1, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants