Github Url: http://github.com/jboner/akka

How to update Assembla tickets from git commits

Use Closes #4 to close ticket 4. closed, close, fix, fixed, and fixes will also close a ticket.

Test #4 will mark the ticket as "Ready to Test".

Re #4, references, refs and see will add a comment to the target ticket but leave it untouched.

Using Git

Global setup:

git config --global user.name "Your FirstName LastName"
git config --global user.email your-email@example.com

Installing New repository (do only once)

mkdir akka
cd akka
git init
#create file README
touch README
git add README
git commit -m 'first commit'
git remote add origin git@github.com:jboner/akka.git
git push origin master

Installing from an Existing Git Repo (do only once)

cd existing_git_repo
git remote add origin git@github.com:jboner/akka.git
git push origin master
        

Clone repository (For new users once the repository is installed)

git clone git@github.com:jboner/akka.git