Git URL:
git@git.assembla.com:luafilesystem.git
git://git.assembla.com/luafilesystem.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 luafilesystem cd luafilesystem 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:luafilesystem.git git push origin master
To checkout the repository:
Private access, clone/pull with ssh protocol
git clone git@git.assembla.com:luafilesystem.gitPublic access, clone/pull with git:// protocol
git clone git://git.assembla.com/luafilesystem.git
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
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.
- Git - SVN Crash Course - a brief intro to Git for Subversion users
- Git cheat sheet - a reference to everyday commands
- Git reference site - a quick way to learn and remember git commands
- Git community book is meant to help you learn how to use Git as quickly and easily as possible
Trac Settings
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.