From 32aefdd8edea8835b9d35a0ce5bb397ba003c016 Mon Sep 17 00:00:00 2001 From: CarlPoirier Date: Thu, 29 May 2014 20:37:49 -0400 Subject: [PATCH] Added How_To_Contribute.txt --- How_To_Contribute.txt | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 How_To_Contribute.txt diff --git a/How_To_Contribute.txt b/How_To_Contribute.txt new file mode 100644 index 00000000..ba621a98 --- /dev/null +++ b/How_To_Contribute.txt @@ -0,0 +1,25 @@ +How to Contribute to KiCad Libraries +======================== + + +1) If you don't have one, create an account on www.github.com. + +2) Fork the repository on which you want to work, under your account: + https://help.github.com/articles/fork-a-repo + +3) Clone your newly created fork: + https://help.github.com/articles/fetching-a-remote + +4) Do your modifications, either using a text editor or the library editor + +5) Commit your changes: + git add -A + git commit -m "place your commit message here" + +6) Push to your branch: + git push + +7) Create a pull request: + https://help.github.com/articles/using-pull-requests + +8) Wait until a librarian approves your work. Discussion and corrections might be needed.