This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
How to Submit Patches
make sure you’ve set up your author to be included when the patch is merged into the official branch:
git config --global user.name "Jan Kassens"
git config --global user.email "you@example.com"
clone the project:
git clone git://github.com/mootools/mootools-core.gitor update your clone:
git fetch
Make changes.
add single files to the commit:
git add <file> <file> ...…and commit
git commit
or commit all changed files:
git commit -a
create a patch from the latest commit:
git format-patch HEAD^
or search the log for the patch before your commits, for example: 0300ffea5f8e9910fa761aab129cc0da8f72a6d4
git log…and create the patches starting from that patch
git format-patch 0300ffea5f8e9
now attach the patches to a ticket






