Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Get back the Empty repository page list of helpful commands

Jerry Ethridge
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 20, 2024

I liked all the commands I could copy and paste when creating a new repository. How do I get that page back?

1 answer

0 votes
Jerry Ethridge
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 20, 2024

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

Ben
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 22, 2024

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)

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Product Admin Site Admin
TAGS
AUG Leaders

Atlassian Community Events