问题
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.
回答1:
I'm assuming your local folder is initialized with git
.
There are two ways you can achieve this:
Via Sourcetree app:
- In Sourcetree, check the left pane for
Remotes
- Right click on it and select
New Remote
Insert the link to your repo and click on OK
Once that's done, just do a Pull from your branch and commit your changes to the repo
Via Terminal (the easy way)
cd /path/to/your/repo
git remote add origin https://remote_url_of_your_repo
git push -u origin master
回答2:
What Sahan said is correct. But what solved my issue was I had to create a folder first in the remote repository.
来源:https://stackoverflow.com/questions/45091933/how-to-add-remote-repository-using-sourcetree