How to add remote repository using Sourcetree

20,149

Solution 1

I'm assuming your local folder is initialized with git.

There are two ways you can achieve this:

Via Sourcetree app:

  1. In Sourcetree, check the left pane for Remotes

enter image description here

  1. Right click on it and select New Remote

enter image description here

  1. Insert the link to your repo and click on OK

  2. Once that's done, just do a Pull from your branch and commit your changes to the repo

Via Terminal (the easy way)

  1. cd /path/to/your/repo
  2. git remote add origin https://remote_url_of_your_repo
  3. git push -u origin master

Solution 2

What Sahan said is correct. But what solved my issue was I had to create a folder first in the remote repository.

Share:
20,149
Ezra Bekele
Author by

Ezra Bekele

Updated on January 29, 2022

Comments

  • Ezra Bekele
    Ezra Bekele about 2 years

    I'm using a Mac and I'm new to Bitbucket and Sourcetree. I want to push my local repository to a remote repository. So in Sourcetree, I pressed "New", "clone from Url" and I pasted the url right from our remote repository. When I press enter, it says the url isn't valid.

    I kinda rushed through the installation, so maybe that could be it.