diff options
author | 2015-08-26 14:27:43 +0300 | |
---|---|---|
committer | 2015-08-26 14:27:43 +0300 | |
commit | cdcc62972d42f009f55e6aeb2ca5c60c3acd75eb (patch) | |
tree | 5c3fef81ac01407a89740f2d9b8b01b0f3a47c7f /scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst | |
parent | 42053c95419042f36242b19d2416d112f7643e14 (diff) |
added dpkt package, initial stateless client implementation
Diffstat (limited to 'scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst')
-rw-r--r-- | scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst b/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst deleted file mode 100644 index cae4acfe..00000000 --- a/scripts/automation/trex_control_plane/python_lib/dpkt-1.8.6.2/docs/contributing.rst +++ /dev/null @@ -1,45 +0,0 @@ -============ -Contributing -============ - -Report a Bug or Make a Feature Request --------------------------------------- -Please go to the GitHub Issues page: https://github.com/kbandla/dpkt/issues. - -Checkout the Code ------------------ - -:: - - git clone https://github.com/kblandla/dpkt.git - - -Become a Developer ------------------- -dpkt uses the 'GitHub Flow' model: `GitHub Flow <http://scottchacon.com/2011/08/31/github-flow.html>`_ - -- To work on something new, create a descriptively named branch off of master (ie: my-awesome) -- Commit to that branch locally and regularly push your work to the same named branch on the server -- When you need feedback or help, or you think the branch is ready for merging, open a pull request -- After someone else has reviewed and signed off on the feature, you can merge it into master - -Getting Started -~~~~~~~~~~~~~~~ - - Fork the repo on GitHub - - git clone git@github.com:your_name_here/dpkt.git - -New Feature or Bug -~~~~~~~~~~~~~~~~~~ - - :: - - $ git checkout -b my-awesome - $ git push -u origin my-awesome - $ <code for a bit>; git push - $ <code for a bit>; git push - $ tox (this will run all the tests) - - - Go to github and hit 'New pull request' - - Someone reviews it and says 'AOK' - - Merge the pull request (green button) - |