I liked all the commands I could copy and paste when creating a new repository. How do I get that page back?
It looked like this!
You have an empty repository
To get started you will need to run these commands in your terminal.
New to Git? Learn the basic Git commands
Configure Git for the first time
- git config --global user.name "Last, First"
- git config --global user.email "First.Last@company.com"
Working with your repository
I just want to clone this repository
If you want to simply clone this empty repository then run this command in your terminal.
- git clone ssh://git@bitbucket.companycom:7999/testing/test.git
My code is ready to be pushed
If you already have code ready to be pushed to this repository then run this in your terminal.
- cd existing-project
- git init
- git add --all
- git commit -m "Initial Commit"
- git remote add origin ssh://git@bitbucket.company.com:7999/testing/test.git
- git push -u origin HEAD:master
My code is already tracked by Git
If your code is already tracked by Git then set this repository as your "origin" to push to.
- cd existing-project
- git remote set-url origin ssh://git@bitbucket.company.com:7999/testing/test.git
- git push -u origin --all
Hey @Jerry Ethridge !
Welcome to the Bitbucket Cloud community! :)
The tooltip that you've described will only display when the first repository is created within a new workspace. It will not display for subsequent repositories, unfortunately :(
I've raised a feature request on your behalf with our developers to include this tooltip for all new repositories, please feel free to Watch this to receive future updates related to it and Vote for it to improve its visibility with regard to customer demand:
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.