Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Nthulane Makgato
PLUS
Nthulane Makgato
Courses Plus Student 19,602 Points

How can i collaborate with others while working on WordPress locally?

Is there a way in which I can collaborate with others while working on a WordPress website locally?

3 Answers

Sam Roberton
Sam Roberton
7,225 Points

There is, I highly recommend the usage of Git, although this isn't the only VCS out there it's brilliant!

You can setup a shared repository you and your colleagues can push and pull from, use BitBucket or GitHub. Work on the theme locally, then push to the repository to merge the changes

Checkout http://teamtreehouse.com/library/git-basics to learn how to do it.

Nthulane Makgato
PLUS
Nthulane Makgato
Courses Plus Student 19,602 Points

Hi Sam, thank you very much for responding.

You are sure that BitBucket or Github can be used for WordPress? I can push and pull from repositories for WordPress? I know it being useful for Rails...

Sam Roberton
Sam Roberton
7,225 Points

You can share and collaborate code with any language on GitHub and BitBucket, just create your .git and share your project.

Collaborators can clone the project to their machine, modify code, run tests locally on something like MAMP before pushing back to the central repository.

Is that what you are looking for?