Development Guide - YADL/yadl GitHub Wiki
Setup
- Fork the YADL Github project
- Type:
git clone https://github.com/YADL/yadl.git
- Type:
cd yadl
- Go to your forked Github project and copy to the clipboard the SSH clone URL
- Type:
git remote add github <your SSH clone URL>
Workflow
Here is a guide on how to work on a new patch. In this example, we will work on a patch called hellopatch:
git checkout master
git pull
git checkout -b hellopatch
Do you work and commit your changes into your branch. Once you are done, you can then do the following:
git push github hellopatch
You may then go to your repo in GitHub.com create a pull request.