Development Guide - YADL/yadl GitHub Wiki

Setup

  1. Fork the YADL Github project
  2. Type: git clone https://github.com/YADL/yadl.git
  3. Type: cd yadl
  4. Go to your forked Github project and copy to the clipboard the SSH clone URL
  5. 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:

  1. git checkout master
  2. git pull
  3. git checkout -b hellopatch

Do you work and commit your changes into your branch. Once you are done, you can then do the following:

  1. git push github hellopatch

You may then go to your repo in GitHub.com create a pull request.