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
Sorry to ask silly question, but please let me know, which remote address I put in
"git remote add"
Hey Gaurav!
Welcome to the Bitbucket Cloud community! :)
The address which is added will depend on whether you are using HTTPS or SSH for authentication.
The easiest way to determine the URL will be to click the "Clone" button in the UI to get the clone command, cloning the repo will automatically update the remote URL in your gitconfig.
To add a new remote for HTTPS (you will need to configure an AppPassword for authentication as username/password is no longer supported):
git remote add origin https://USERNAME:APP_PASSWORD@bitbucket.org/username/reposlug.git
For SSH, it will look a little different:
git remote add origin ssh://USERNAME@bitbucket.org/WORKSPACEID/REPOSLUG.git
NOTE: you will need to substitute in the values specified above (ie username/AppPassword/workspaceID/reposlug)
The following article explains this in more detail:
https://www.atlassian.com/git/tutorials/syncing
Hope this helps.
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.