Git Url:
git@git.assembla.com:tatawimaxkeepalive.git
git://git.assembla.com/tatawimaxkeepalive.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 tatawimaxkeepalive cd tatawimaxkeepalive 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:tatawimaxkeepalive.git git push origin master
To checkout the repository:
Private access, clone/pull with ssh protocol
git clone git@git.assembla.com:tatawimaxkeepalive.gitPublic access, clone/pull with git:// protocol
git clone git://git.assembla.com/tatawimaxkeepalive.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
- Everyday GIT With 20 Commands Or So
- A tutorial introduction to git
- Git Documentation wiki
Timeline |
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.