mirror of
https://github.com/not-kennethreitz/git-legit.org.git
synced 2026-06-05 23:10:16 +00:00
77 lines
2.6 KiB
HTML
77 lines
2.6 KiB
HTML
<!doctype html>
|
|
|
|
|
|
<title>Welcome | Legit (Git for Humans)</title>
|
|
<meta charset=utf-8>
|
|
<link rel=stylesheet type=text/css href="style.css">
|
|
<style type=text/css>
|
|
h1 { margin: 0 0 30px 0; background: url(logo.png) no-repeat center; height: 165px; }
|
|
h1 span, p.tagline { display: none; }
|
|
</style>
|
|
|
|
|
|
<div class=box>
|
|
|
|
|
|
<h1><span>Welcome</span></h1>
|
|
|
|
|
|
|
|
<p class=nav>
|
|
<a href="/">overview</a> //
|
|
<a href="https://github.com/kennethreitz/legit">github</a> //
|
|
<a href="http://pypi.python.org/pypi/legit/">pypi</a> //
|
|
<a href="https://github.com/kennethreitz/legit/issues">issue tracker</a>
|
|
|
|
|
|
<blockquote>
|
|
Legit is a complimentary command-line interface for Git, optimized for
|
|
workflow simplicity.
|
|
It is heavily inspired by GitHub for Mac.
|
|
</blockquote>
|
|
<p class=latestver>
|
|
<iframe src="http://markdotto.github.com/github-buttons/github-btn.html?user=kennethreitz&repo=legit&type=watch&count=true&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="150px" height="35px" style="float: right"></iframe></iframe>
|
|
|
|
<h2>Git for Humans</h2>
|
|
<p>Feature branch workflows are dead simple.</p>
|
|
<pre>
|
|
<span class=ig>$ </span>git switch <branch>
|
|
<span class=ig># Switches to branch. Stashes and restores unstaged changes.</span>
|
|
|
|
<span class=ig>$ </span>git sync
|
|
<span class=ig># Syncronizes current branch. Auto-merge/rebase, un/stash.</span>
|
|
|
|
<span class=ig>$ </span>git publish <branch>
|
|
<span class=ig># Publishes branch to remote server.</span>
|
|
|
|
<span class=ig>$ </span>git unpublish <branch>
|
|
<span class=ig># Removes branch from remote server.</span>
|
|
|
|
<span class=ig>$ </span>git harvest <branch>
|
|
<span class=ig># Auto-merge/rebase commits from given branch.</span>
|
|
|
|
<span class=ig>$ </span>git sprout <branch>
|
|
<span class=ig># Sprout a new branch from the current branch.</span>
|
|
|
|
<span class=ig>$ </span>git graft <branch>
|
|
<span class=ig># Merge unpublished branch into current branch, then remove it.</span>
|
|
|
|
<span class=ig>$ </span>git branches
|
|
<span class=ig># Nice & pretty list of branches + publication status.</span>
|
|
|
|
</pre>
|
|
|
|
<h2>Installing Legit</h2>
|
|
<pre><span class=ig>$ </span>pip install legit
|
|
<span class=ig>$ </span>legit install
|
|
<span class=ig><installs git aliases></span></pre>
|
|
|
|
|
|
<p>Nice and simple — the way it should be.</p>
|
|
|
|
<a href="http://github.com/kennethreitz/legit"><img style="position: fixed; top: 0; right: 0; border: 0;"
|
|
src="http://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
|
|
|
|
<p class=footer>
|
|
© Copyright 2012. A <a href=http://kennethreitz.com/>Kenneth Reitz</a> Project.
|
|
</div> |