wesleytodd / YeoPress

A Yeoman generator for WordPress
Other
1.08k stars 161 forks source link

Would be great to also have an option for pushing to bitbucket #28

Closed jurbank closed 11 years ago

wesleytodd commented 11 years ago

Could you provide more details? I am not sure what you mean.

jurbank commented 11 years ago

In the prompts, you have the question "Use Git?" which connects to GitHub.com. I think it would be nice if there was an option to use BitBucket instead.

wesleytodd commented 11 years ago

The "use git" prompt does not actually connect to any external git hosting service. If you would like to push your project to bitbucket all you have to do is add your bitbucket repo as a remote like this:

$ git remote add origin git@bitbucket.org:username/reponame.git
$ git push origin master

Does that help?

jurbank commented 11 years ago

Absolutely Wes, thank you!