Legit: The Sexy Git CLI

GitHub for Mac is not just a Git client. This comment on Hacker News says it best:

They haven't re-created the git CLI tool in a GUI, they've created something different. They've created a tool that makes Git more accessible. Little things like auto-stashing when you switch branches will confuse git veterans, but it will make Git much easier to grok for newcomers because of the assumptions it makes about your Git workflow.

Why not bring this innovation back to the command line Git interface?

Enter Legit

Legit is a new tool that allows you to interface with a Git respository much like you would with GitHub for Mac—from the command line.

Switching branches becomes seamless. Any pending changes are automatically stashed and restored. Same goes with syncing your repository. And merging (grafting). And branching (sprouting).

Managing remote branches becomes as simple as publish branch and unpublish branch. Simple.

Installation

Installing Legit is easy with pip (Python 2.6 or 2.7 required):

$ pip install legit

This makes the legit command available. Run it within a repository.

Available commands:

  • sync [<span>] : Syncronizes the given branch. Defaults to current branch. Stash, Fetch, Auto-Merge/Rebase, Push, and Unstash.
  • branches : Get a nice pretty list of available branches.
  • switch <span> : Switches to specified branch. Automatically stashes and unstashes any changes.
  • sprout [<span>] <span> : Creates a new branch off of the specified branch. Defaults to current branch. Swiches to it immediately.
  • graft <span> <span> : Merges specified branch into the second branch, and removes it. You can only graft unpublished branches.
  • publish <span> : Publishes specified branch to the remote.
  • unpublish : Removes specified branch from the remote.

Moving Forward

Legit is very much in beta. I'm using it for real work already, so don't hesitate to try it out. As feedback and contributions come in, I expect the feature-set to evolve. We'll see. That's up to you.

Static binaries will be available soon for all major platforms.

Source Code

Legit is open source (BSD Licensed), powered by ClintGitPython, and good intentions.

Kenneth Reitz
Wandering street photographer, idealist, and moral fallibilist.
http://kennethreitz.org
Previous
Previous

Static Sites on Heroku Cedar

Next
Next

Announcing Httpbin.org