Reputation: 10008
I am workin with Pycharm and I have Git repo with two remotes called github
and heroku
. Yes, I have not remote called origin
. Now I want to be able pull/push from/to both remotes. Where could I specify remote names?
Upvotes: 1
Views: 632
Reputation: 97148
In PyCharm 4.0, you can choose the remote name to push into by clicking on the name of the remote in the Push Commits dialog:
The Pull Changes dialog (Git | Repository | Pull...) also allows you to choose the remote to pull from. Note that the default "Update project" dialog pulls from the remote specified in the tracking branch for your local branch.
Upvotes: 1