Women Who Code DC gladly accepts additions to this repository! Here are the steps on how to get started with contributions:
-
Clone the repository:
git clone [email protected]:womenwhocodedc/ruby-on-rails-community.git
-
From the cloned repository on your local machine, create a feature branch using
git checkout -b
with your last name and the name of your feature in this format:lastName_myFeature
-
Add your changes to your repo using the regular Git commands (
git add/rm
andgit commit
), then push to your feature branchgit push origin lastName_myFeature
. -
Your feature branch will be visible on the main repository page, like so (example is from front end repository):
-
Create a pull request (PR) by clicking on "Compare & pull request", and be sure to reference @womenwhocodedc/ruby-on-rails-leads in your PR comment. Also be sure to reference the issue number in your PR if you are trying to fix an issue.
-
If everything looks good, the reviewer will merge your PR into the master branch and delete your feature branch. And then your changes will be in the main repository! However...
-
If you need to make changes before your PR has been merged (whether you want to or you've been requested by the reviewer to make more changes), you can continue pushing the changes to your feature branch; the pull request will be updated with your subsequent commits.
And that's all there is to it!