Git

Git Url: git@git.assembla.com:machine.git git://git.assembla.com/machine.git

Global setup

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

How to create/push/clone Git repository

To create a local repository:
mkdir machine
cd machine
git init
# create a project, edit files
git add .
git-commit -m "commit comment"
#edit files
git add .
git-commit -m "another commit comment"
# and so on
 
To push to the repository:
git remote add origin git@git.assembla.com:machine.git
git push origin master
 
To checkout the repository:

Private access, clone/pull with ssh protocol

git clone git@git.assembla.com:machine.git

Public access, clone/pull with git:// protocol

git clone git://git.assembla.com/machine.git

Git is a popular version control system designed to handle very large projects with speed and efficiency; it is used mainly for various open source projects, most notably the Linux kernel . Git falls in the category of distributed source code management tools, similar to e.g. GNU Arch or Monotone (or BitKeeper in the proprietary world).Every Git working directory is a full-fledged repository with full revision tracking capabilities, not dependent on network access or a central server .

Installation

Windows

Download installation from this page and follow the steps

 

Debian/Ubuntu

apt-get install git-core
 

*BSD

cd /usr/ports/devel/git
make
make install

Timeline  | 

Trac provides software development teams with ticket for bugs and feature requests, roadmap planning, a wiki,and Git integration. Assembla adds team permissioning and email alert management to Trac.Assembla always installs Trac with Git because Changeset alerts link to the trac code and changeset browser.