Solü Forking Workflow
Process
Initial Setup
These steps must be completed once by each developer when they begin contributing to a repository.
Forking the repository
Because our repositories are read-only, you'll need to create and maintain a separate copy - the following will walk you through the steps necessary to begin contributing to any repository utilizing this workflow.
Fork the repository in BitBucket to create your own copy: (How To Fork)
Best Practice
Check out The Forking Workflow and Branch or fork your Repository for more information on forking.
Cloning the repository
Clone this copy to create a version on your local environment:
Best Practice
Check out Git Clone and Clone a repository for more information on cloning.
Feature Development
These steps must be completed by each developer whenever they begin/complete work on a feature.
Beginning a Feature: Managing Feature Branches
Refer to the /wiki/spaces/SM/pages/32899077 for details on how to create and maintain feature branches and begin development.
Note
Every feature (or distinct deliverable) should have a dedicated branch separate from the rest of your development.
Completing a Feature: Creating a Pull Request
When you have completed a feature and are ready to deliver, commit the change to your local repository (cloned) and Push it to your remote repository (forked). Now the change is in your forked repository, but it's not in the original. So, create a pull request in your remote repository(forked). Pull requests use the primary repository(original repository) as the destination repository. Any pull requests to your remote repository if accepted will have changes in the original repository.
Use BitBucket to create a pull request, indicating that your change is ready for review and, if all goes well, acceptance into the origin repository:
If the change has been approved, the reviewers will sign off on it and it will be merged into the origin repository. For more information about pull requests, see Making a Pull Request and Work with pull requests.