Gerrit is a web based code review system, facilitating online code reviews for projects using the Git version control system.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer. This functionality enables a more centralized usage of Gi
(Link: gerrit – Project Hosting on Google Code)
Uncategorized
git
Here are a bunch of git-related tools I’ve found useful at some point. The git repository for all of these is cloneable at git://gitorious.org/willgit/mainline.git/ (browse).
git-wtf: understand the current state of your git repository.
git-publish-branch: publish a branch to a remote repository.
git-rank-contributors: rank all authors by patch size.
git-show-merges: show which branches are merged into the current branch.
git-walkthrough-add: (deprecated) like git add -p.
(Link: William’s miscellaneous git tools)
Uncategorized
git
earn git one commit at a time
(Link: git ready » learn git one commit at a time)
Uncategorized
git
Git is a distributed version control system. No, you don’t need to know what that means to use this guide. Think of it as a time machine: Subversion or CVS without the cruft.
If you make a lot of changes, but decided you made a mistake, this will save your butt.
This guide is for people who want to jump to any point in time with their project/game/whatever, and want something to use for themselves.
(Link: Git for the lazy – Spheriki)
Uncategorized
git, scm
This is the Git reference site. This is meant to be a quick reference for learning and remembering the most important and commonly used Git commands. The commands are organized into sections of the type of operation you may be trying to do, and will preset the common options and commands needed to accomplish these common tasks.
Each section will link to the next section, so it can be used as a tutorial. Every page will also link to more in-depth Git documentation such as the offical manual pages and relevant sections in the Pro Git book, so you can learn more about any of the commands. First, we’ll start with thinking about source code management like Git does.
(Link: Git Reference)
Uncategorized
git
Gitbox is a Mac OS X graphical interface for Git version control system. In a single window you see branches, history and working directory status.
Everyday operations are easy: stage and unstage changes with a checkbox. Commit, pull, merge and push with a single click. Double-click a change to show a diff with FileMerge.app.
(Link: Gitbox — Git GUI for Mac OS X)
Uncategorized
git, osx
A useful script that displays local & remote branches, what are in sync and what need merging,
and so on, like so:
(Link: git-wtf)
Uncategorized
git
Putting your source code under version control with Git is strongly recommended, not only because it’s nearly a universal practice in the Rails world, but also because it will allow you to share your code more easily (Section 1.3.4) and deploy your application right here in the first chapter (Section 1.4).
(Link: Ruby on Rails Tutorial: Version control with Git)
Uncategorized
git, rubyonrails
repo.or.cz is a public Git hosting site. Create a project in a snap, publish your development, give others push access and let anyone have a look and contribute. Alternatively, if you just see a random git:// URL fly by and want to check it out, or you have limited bandwidth or want backup – just quickly set up a mirror of any project published elsewhere and we will provide pull and gitweb access for the project, or send you notifications when new stuff gets committed. (read more, terms of use) (want to help?)
(Link: repo.or.cz – Public Git Hosting)
Uncategorized
git, hosting, opensource
Unlimited Repositories
Unlimited Trac Projects
Unlimited Users
Custom Domains
Custom Logos & Colors
SSL Secured
WebDAV Shared Drives
Scheduled Backups
2GB Storage
$1/GB Additional Storage
(Link: Repository Hosting – Subversion Hosting, Git Hosting and Trac Hosting)
Uncategorized
git, hosting, scm, svn
toto is a git-powered, minimalist blog engine for the hackers of Oz. The engine weighs around ~230 sloc at its worst. There is no toto client, at least for now; everything goes through git.
(Link: toto is a git-powered, minimalist blog engine for the hackers of Oz)
Uncategorized
blog, git
A project is always more fun when you’ve got friends working with you, but how can do it when working on a coding project? I’ll keep my keyboard to myself, thanks.
Enter GitHub. With this web service, you can share your coding projects and collaborate with ease!
(Link: Getting the Hang of GitHub | Nettuts+)
Uncategorized
git, github
Table of Contents
* Feature Development
* Bug Fixes
* QA Branch Management
* Production Tagging
* Summary
* Notes
(Link: ReinH — A Git Workflow for Agile Teams)
Uncategorized
git, scm
git-wtf displays the state of your repository in a readable, easy-to-scan format. It’s useful for getting a summary of how a branch relates to a remote server, and for wrangling many topic branches. git-wtf can show you: – How a branch relates to the remote repo, if it’s a tracking branch. – How a branch relates to integration branches, if it’s a feature branch. – How a branch relates to the feature branches, if it’s an integration branch.
(Link: git-wtf – displays the state of your repository in a readable, easy-to-scan format)
Uncategorized
git