The simplest way of doing this is to use the bamboo source code task to perform a check out of any old branch (master, develop, it doesn't matter).
The above will use the credentials you have setup inside bamboo to authenticate with bitbucket and clone the repository.
Once the bitbucket task has cloned your repository, all you then need to do is use a script task to do what you really want to do using git commands to dynamically switch branches, or whatever.
git checkout release/${bamboo.some.variable}
The point is, the bitbucket task does the clone of the whole repo, and manages the authentication. If you try it without using the bitbucket source code task, then you are just making it hard for yourself.
First of all: what is the usecase for running checkout from command line and not with the source checkout task?
Second: if you want to use git from script task you'll not be able to use any credentials defined in Bamboo - you need to provide all the authentication on your own.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As long as the path to the git command is set on system level you can execute git commands.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi we already set the path of our git.exe in bamboo server capabilities, but still we are encountering "CategoryInfo : ObjectNotFound: (git:String) [], CommandNotFound". Thanks for the quick response.git.PNG
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure what the problem is, I've got exactly the same configuration.
Maybe the agent is running as a different user as the logged on user and does not have access rights to the defined directory?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi we can now use git command in a script task, but we are still enountering some problems. We do want to checkout a repository from Bitbucket using a passwordless(ssh). We already executed the ssh key generate command and place it on the access key of our project in bitbucket. But when we are running our build plan which is just cloning the repository via ssh we are getting host key verification failed. We also set our ssh key in bamboo shared credentials but still we are getting the same error. Hope anyone can help us. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Which Bitbucket are you using? 5.12.x? Have you marked "Manage Trusted Keys" in security settings
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
does it work from the commmand line?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We're using Bitbucket 4.8.3 and bamboo 5.12.3.1. Yes it works when i tried it in the command line. Just a little bit confused, For Manage Trusted Keys it is only on the security settings of Bamboo therefore if someone connects with my bamboo then it will allow the connection, right? but what we want is to clone a repository from bitbuket using script task of bamboo. We are just using a local agent since both application only resides on my local machine.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The trusted keys option is for apps communicating with Bamboo (like Bitbucket). You would also see errors in the bamboo.log
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mark we are still not able to clone a repository using script task. Please see attached configuration for your reference. Thanks.config.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.