I set up a repository with some links to other repos via svn:externals property. Checking out from the command line with svn command works well. However if I try to update my working copy with svnX GUI it gives the following error:
svn: warning: Error handling externals definition for
'/Users/MyName/MyProject/third_party_library': svn: warning: OPTIONS
of 'http://svn.external.com/repositories/third_party_library':
authorization failed: Could not authenticate to server: rejected Basic
challenge (http://svn.external.com)
So it seems svnX fails to select the appropriate authentication method while checking out externals. It is strange because if I try to check out the external repo as a stand-alone working copy it works even with svnX.
Did you have already this issue? Are there any way to tell svnX which auth method to use when checking out externals?
Related
I changed my app deployment version from iOS 13 to iOS 14 and I am getting an error building the app.
It keeps talking about no credentials provided although all these packages are public. Also I have github credentials set up and use them all the time.
I have tried removing github account, changing ssh -> http, but nothing seems to help.
Same issue happens when I try to add a new public package using Swift Package Manager
Any suggestions?
I had a similar issue, the error I was receiving was:
xcodebuild: error: Could not resolve package dependencies:
Authentication failed because the credentials were missing.
artifact not found for target 'AddonManager'.
The solution was to generate my SSH key using RSA instead of Ed25519, it seems like Xcode couldn't read my SSH key in the Ed25519 format.
I re-generated my SSH using the legacy RSA algorithm (as noted in the github docs) and added it to my local machine, this fixed the error on the next build.
https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
Check your git config file first write your terminal: git config --global --edit
and it is supposed to be there "https://github.com/: rather than url.git#github.com.
I'm trying to setup a remote repository for Homebrew on Artifactory. I'm following the steps as described in the following page https://jfrog.com/knowledge-base/how-do-i-set-up-a-remote-homebrew-repository.
However, When testing the remote url connection (http://homebrew.bintray.com/bottles) I got this error:
Connection failed: Error 403: Forbidden
I also checked the website in a browser and got the same error message. What are the work arounds for this?
try this:
Create Generic remote repo named homebrew point it to https://homebrew.bintray.com/.
then set env HOMEBREW_BOTTLE_DOMAIN=http://localhost:8080/artifactory/homebrew/.
brew install wget
I have to download a repository via SVN by using Mac. And I have some troubles with it. I, actually, past the URL and stuff. And put my password and log in right there but it still gives some strange errors and mb some of you can help me and tell how to do deals with it.
Here is my error:
svn: E170013: Unable to connect to a repository at URL 'https://svn.pathomation.com:****/!/%23QA_PMA.view.2_trunk'
svn: E175009: The XML response contains invalid XML
svn: E130003: Malformed XML: no element found
What does it mean and how to avoid this error?
You use incorrect URL with the Subversion client. Read the article KB102: Subversion client errors caused by inappropriate repository URL.
I have installed SCM-Manager. I would like to use it in the future for version control. The problem is, I cannot add it as a repository in Xcode, and I cannot clone it from command line:
$ git clone http://127.0.0.1:8080/scm/git/MyRepo
Cloning into 'MyRepo'...
Checking connectivity... done.
warning: remote HEAD refers to nonexistent ref, unable to checkout.
$
In Xcode I get this message:
fatal: unable to access 'http://127.0.0.1:8080/scm/git/MyRepo/': The requested URL returned error: 403
SCM server logs this
failed to read basic auth credentials
I have tried to install on different server, checkout with different user, nothing helped.
The first message means that you have cloned an empty repository. The message is only a warning and the repository is fully functional. A better way is to create the "bare" repository in SCM-Manager and add the remote reference to a local created repository:
git init MyRepo
git-remote add origin http://127.0.0.1:8080/scm/git/MyRepo/
The messages from Xcode sounds like missing credentials.
I have successfully deployed Integrity on Heroku. I have been able to build script for public repo on git and the build runs successfully.
But running integrity for private repo gives me error as
error: The requested URL returned error: 401\nerror: The requested URL returned error: 401\nerror: The requested URL returned error: 401\n"
"error: pathspec 'origin/master' did not match any file(s) known to git.\n"
I am using the https version for cloning since heroku does not ssh cloning.
I think that for cloning private repo we need to provide password, so is there any way in Integrity to provide a password?
Or is there any other way for the same.
Firstly, you need to uncheck the "Public project" checkbox in Integrity project setting.
Secondly, you need to pass the password on the https url.
And that should work as it works for me :)