Files
git-legit.org/static/index.html
T
2012-03-25 00:07:49 -04:00

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&amp;repo=legit&amp;type=watch&amp;count=true&amp;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 &lt;branch&gt;
<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 &lt;branch&gt;
<span class=ig># Publishes branch to remote server.</span>
<span class=ig>$ </span>git unpublish &lt;branch&gt;
<span class=ig># Removes branch from remote server.</span>
<span class=ig>$ </span>git harvest &lt;branch&gt;
<span class=ig># Auto-merge/rebase commits from given branch.</span>
<span class=ig>$ </span>git sprout &lt;branch&gt;
<span class=ig># Sprout a new branch from the current branch.</span>
<span class=ig>$ </span>git graft &lt;branch&gt;
<span class=ig># Merge unpublished branch into current branch, then remove it.</span>
<span class=ig>$ </span>git branches
<span class=ig># Nice &amp; 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>&lt;installs git aliases&gt;</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>
&copy; Copyright 2012. A <a href=http://kennethreitz.com/>Kenneth Reitz</a> Project.
</div>