Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,274
Community Members
 
Community Events
184
Community Groups

how to push code to the existing bitbucket repository first time using sourcetree ?

Deleted user Feb 25, 2020

Hi,

i have an exitsing code on my local drive and i have created a empty (new ) repo in the bit bucket. now i want to push the code to the repo using the source tree.  i dont want to clone to a new folder and copy the files allover instead i want to commit the existing folder to the repo using source tree not the command line way. Please let me know if anyone has a solution to this.

2 answers

Following on @blaiseli , the instructions above, and the Bitbucket default, is incorrect. You must have a completely bare repository to avoid a failed operation.

So, steps are

  • When creating the remote repository on Bitbucket, DO NOT create ANY files, No readme, no gitignore, or anything else that might be suggested.
  • Then execute commands locally:
git remote add origin <the URL for your Bitbucket repository> 
git push -u origin master

Or you can a force push, which will wipe out all existing files on the new repo

 

git push -u origin master --force

Like # people like this
5 votes
Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Feb 25, 2020

Hi @[deleted],

Welcome to Atlassian Community.

There should be instructions for how to populate your repository with local code shown if you access your repository in Bitbucket, but here are the steps:

  1. Cd into your directory that have your code
  2. Initiate it as a Git repository by running these commands
    git init
    git add --all
    git commit -m "Initial Commit"
  3. Copy the URL for you empty repository in Bitbucket
  4. Set the remote URL for your repository and push your initial commit
    git remote add origin <the URL for your Bitbucket repository> 
    git push -u origin master

Done, you should now see your code in Bitbucket.

Like Nicholas Liong likes this

> There should be instructions for how to populate your repository with local code shown if you access your repository in Bitbucket

 

There apparently isn't when keeping the default option (include a .gitignore). And then, then the instructions fail (fatal: refusing to merge unrelated histories).

 

In my case, I had to delete the new repository and create another one, making sure there was no .gitignore. Then the instructions appeared and worked.

Like # people like this

@Mikael Sandberg Where are the instructions? Github has it indeed.

Is there a way to edit responses?

This page is one of the first google results. But the method given here has been outdated for some time.

Like Nigel Pepeon likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events