Skip to content

Commit fe1407a

Browse files
author
Maria Shaldibina and aram price
committedAug 6, 2013
Add Contributing.md
1 parent f1b4c37 commit fe1407a

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed
 

‎CONTRIBUTING.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Contributing to dea_ng
2+
3+
The Cloud Foundry team uses GitHub and accepts contributions via
4+
[pull request](https://help.github.com/articles/using-pull-requests).
5+
6+
## Contributor License Agreement
7+
8+
Follow these steps to make a contribution to any of our open source repositories:
9+
10+
1. Ensure that you have completed our CLA Agreement for
11+
[individuals](http://www.cloudfoundry.org/individualcontribution.pdf) or
12+
[corporations](http://www.cloudfoundry.org/corpcontribution.pdf).
13+
14+
1. Set your name and email (these should match the information on your submitted CLA)
15+
16+
git config --global user.name "Firstname Lastname"
17+
git config --global user.email "your_email@example.com"
18+
19+
## General Workflow
20+
21+
1. Fork the repository
22+
1. Create a feature branch (`git checkout -b better_dea`)
23+
1. Make changes on your branch
24+
1. [Run dea tests](https://github.com/cloudfoundry/dea_ng#running-the-dea-in-the-provided-vagrant-vm)
25+
1. Push to your fork (`git push origin better_dea`) and submit a pull request
26+
27+
We favor pull requests with very small, single commits with a single purpose.
28+
29+
Your pull request is much more likely to be accepted if:
30+
31+
* Your pull request includes tests
32+
33+
* Your pull request is small and focused with a clear message that conveys the intent of your change

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -160,3 +160,7 @@ The following log levels exist, shown with an example of what they are used for:
160160
* droplet.* - logging relevant to an app's instance
161161
* staging.* - logging relevant to the staging of an app's bits
162162
* dea.* - component-level logging for the DEA itself
163+
164+
## Contributing
165+
166+
Please read the [contributors' guide](https://github.com/cloudfoundry/dea_ng/blob/master/CONTRIBUTING.md)

0 commit comments

Comments
 (0)
Please sign in to comment.