I'd like to use the latest version code from the public bitbucket project rxlint in my gradle project. But I don't know which URL to use.
I've tried to enter some URLs (see below) on https://jitpack.io/ - without success. The error message is always:
Repo not found or no access token provided
and since this repo is public, I guess, that I am just using the wrong format for the URL
URL's I've tried without success:
org.bitbucket.littlerobots/rxlint
https://bitbucket.org/littlerobots/rxlint
https://bitbucket.org/littlerobots/rxlint/src
git+ssh://git#bitbucket.org/littlerobots/rxlint.git
V1.2 tag: https://bitbucket.org/littlerobots/rxlint/src/a5e5d85b8358f74b33f5844ff154c80bc10d0009/?at=v1.2
tip tag: https://bitbucket.org/littlerobots/rxlint/src/462cbb708d8897480fc327e736acde50377b4e2c/?at=tip
You need to create authToken for this repository:
https://jitpack.io/docs/PRIVATE/#bitbucket
In order to Look Up and manage Bitbucket repositories you should add the App Password to your JitPack account:
Sign In on https://jitpack.io
Click on your username (https://jitpack.io/w/user)
Enter your Bibucket user and App Password
That project is hosted as a Mercurial (hg) repository on Bitbucket. JitPack only supports Git repositories.
Related
I'm trying to build my Docker image with GitHub action using the official docker/build-push-action action. The action provides secret GIT_AUTH_TOKEN for the build by default but I seem not to be able to use the token to read another private repository from the same organization (install pip package). The same Dockerfile builds fine locally when I provide a working token for the build.
Am I supposed to be able to use the default GIT_AUTH_TOKEN or do I need to retrieve a token from Secrets Manager as we do on Jenkins that I'm trying to get rid of. Thanks for your help!
You have to generate a different PAT to clone the other repo. Bring that token in as a secret and use it in your workflow to checkout
I also must conclude after further testing and research that the github provided workflow token gives privileges to the current repository only.
Is it possible to have a package that references a private bitbucket repository? Something like below but I would need to supply a password and username. Is this at all possible with Dart?
dependencies:
secreterepo:
git: https://blah#bitbucket.org/blah/secretrepo.git
You could set up SSH to create an authenticated connection to BitBucket and then use an SSH URL in the dependency like git#bitbucket.org:blah/secretrepo.git
When I create a new Git repository in a TFS project area, there are several options to add some code.
I’ve tried the import a repository a couple of times now.
The first run gave me this error after an extended period of time. This would indicate a connection timeout based on my experience with other tools and process.
We checked the logs in the EventViewer on the application server side but couldnt find anything. We suspect an SSL/cert issue between BitBucket and TFS 2018. This is also hosted in-house.
Please double check whether the URL is correct. And please notice import service relies on basic authentication to communicate with the source repository. If the username / password you are using are not basic auth then authentication will fail and import will fail. One way to check if the username / password you are using are basic auth or not is to try using Git to clone your repository using the below format:
git clone https://<<username>>:<<password>>#<<remaining clone Url>>
Please refer to the following link for more details:
https://learn.microsoft.com/en-us/vsts/git/import-git-repository?view=vsts#frequently-asked-questions
I have installed Git and Gerrit and prepared remote site.
I am facing communication issue between Client and Remote.
My Config file looks as below,
enter image description here
Error while doing clone,
Fatal: Could not read from remote repository
Please make sure you have the correct access rights.
I need to checkout the SVN code but I am trying from the Xcode and terminal but unable to do that.
My SVN format url starts from url below
svn://google.com/ad
I have valid username and password.
Do I need to make SVN to http/https before using it.
what you need to do is this:
svn --username user --password password co svn://google.com/ad
The Xcode client is little buggy: when you add new repo that require auth,before, you must do at least one operation, such as svn list, via shell.
After this operation, you can add easily repo to your Xcode panel and all works fine.
I hope this may help.
If you have errors, show us.