MikeW
MikeW

Reputation: 4809

How do I perform a git remote add from Sublime Text editor

I perform any other git related command from ctrl-shift-p , except it appears I need to switch to the bash shell to add a remote repo - is this possible within ST2?

Thanks!

Upvotes: 1

Views: 1369

Answers (1)

FMCorz
FMCorz

Reputation: 2706

Assuming you have the Git plugin, in the command palette you can go to "Git: Custom command" and type:

remote add <name> <url>

Upvotes: 4

Related Questions