Git
Git Url: git@git.assembla.com:machine.git git://git.assembla.com/machine.gitGlobal 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 - SVN Crash Course - A brief intro to Git for Subversion users
- Everyday GIT With 20 Commands Or So
- A tutorial introduction to git
- Git Documentation wiki
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
Trac
Trac Url: http://trac-git.assembla.com/machine
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.