You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
We have a question about how turning on two-factor authentication in Bitbucket accounts will affect our pipeline scripts.
First, in the Build Setup section (which is BitBucket's code) there is a line that runs git clone with "https://x-token-auth:..." access.
git clone --branch="master" --depth 50 https://x-token-auth:$REPOSITORY_OAUTH_ACCESS_TOKEN@bitbucket.org/$BITBUCKET_REPO_FULL_NAME.git $BUILD_DIR
In the documentation for turning on two-step verification (2FA), it says "Enabling two-step verification will disable all remote HTTPS actions for Git and the Bitbucket API. Any applications which use HTTPS to access Bitbucket will be impacted."
I'm imagining that the above clone action will not be impacted, but want to be sure I understand why.
And, I have the same question about scripts that we run in our pipelines. Do we have initiate an SSH session before running git clone in our scripts, or are we already running in SSH?
Thanks and Best Regards,
Josh
Hey @BSYF
G'DAy!
The pipeline build setup uses internal authentication and not your personal authentication, so any changes on your account will not affect the build setup.
As for your script, you don't need to initiate SSH sessions before running the git clone. Git clone will automatically look for what your git config is before cloning via HTTPS or SSH.
Please check our guide below on how to clone/push back to your repositories via HTTPS or SSH at:
I hope this helps, please let me know if you have any additional questions.
Cheers,
Syahrul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.