= INTRODUCTION =

== BASIC GIT COMMANDS ==

git add .
git commit -a

== Remote Branches ==

To list all remote branches use:
 git-branch -a

To checkout a remote branch initially use:
 git-checkout -b <branchname> origin/<branchname>

Once you have done this, it will be a local branch, too.
Following remote branches should exist:

 master

This is the development branch. Please try
to not work directly on it, but instead
you should use feature branches. So the
only commits on master should be non-fastforward
merges from features branches. Commits on
master should always compile and all test
cases should pass successfully.

 release

Once the master is ready to be released,
it should be merged to the release branch
with --no-ff. So on the release branch
there are only merges from master.

 debian

Merge changes from the release branch to
the debian branch in order to make
debian packages.

== Local branches ==

You should always make your own feature branch with:
 git-checkout -b <feature-branch-name>

On this branch it is not so important that every
commit compiles or all test cases run.

To merge a branch use (no-fastforward):
 git-merge --no-ff <branchname>



= MIGRATION =

This git folder was imported initially with the command:
git svn clone -T trunk -t tags -b unstable https://svn.libelektra.org/svn/elektra

then every remote branch (git branch -a) was checked out using:
git checkout -b $BRANCH $BRANCH

== OTHER TRY ==

(lead to elektra-history)

git svn clone --authors-file=/home/markus/Projekte/Elektra/current/doc/GIT_AUTHORS --prefix=svn/ -T trunk -t tags -b unstable https://svn.libelektra.org/svn/elektra


git svn-abandon-fix-refs
git svn-abandon-cleanup

(nice authors, branches and tags.. but unstable branch missing!)

