Skip to content

Contributing

Benjamin C Meyer edited this page Jun 18, 2015 · 1 revision

Introduction

Quick tutorial on how to contribute to Arora. Because we use git there are many different ways you can contribute, and here is just one way.

Details

On your local machine (if you haven't already) set your git user name and e-mail address

  • git config --global user.name "Foo Bar"
  • git config --global user.email "[email protected]"

For just one or two patches

  • Checkout the git repository
  • Make a change and commit it
  • Use git format-patch to make a patch with and make an issue with the patch attached. When the patch is applied it goes into git just like any other commit and you get full credit.

For multiple patches

cd .git
rm -rf hooks
ln -s ../git_hooks hooks
  • If you want an image to show up next to your commits on github you have to make an account on https://gravatar.com/

After it is merged or to update to the latest arora

  • git pull --rebase git:https://github.com/Arora/arora.git master

Some more info on git

Clone this wiki locally