2012-07-31 12:59:15 +02:00
|
|
|
<!DOCTYPE html>
|
2012-08-06 19:33:03 +02:00
|
|
|
<html lang="en" xmlns="http://www.w3.org/1999/html">
|
2012-07-31 12:59:15 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
<title>git-flow cheatsheet</title>
|
|
|
|
<link href='http://fonts.googleapis.com/css?family=Sansita+One' rel='stylesheet' type='text/css'>
|
|
|
|
<link rel="stylesheet" href="css/normalize.css" type="text/css">
|
|
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
2012-08-05 14:19:48 +02:00
|
|
|
|
|
|
|
|
2012-07-31 12:59:15 +02:00
|
|
|
<script src="js/jquery-1.7.2.min.js"></script>
|
|
|
|
<script src="js/jquery.scrollorama.js"></script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-33766650-1']);
|
|
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
|
|
|
|
(function () {
|
|
|
|
var ga = document.createElement('script');
|
|
|
|
ga.type = 'text/javascript';
|
|
|
|
ga.async = true;
|
|
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
|
|
var s = document.getElementsByTagName('script')[0];
|
|
|
|
s.parentNode.insertBefore(ga, s);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p id="console"></p>
|
|
|
|
|
2012-08-05 14:19:48 +02:00
|
|
|
<div id="banner"><a href="">Fork me on GitHub</a></div>
|
|
|
|
|
|
|
|
<header>
|
|
|
|
<div class="scrollblock">
|
|
|
|
<h1 id="title">git-flow cheatsheet</h1>
|
|
|
|
|
|
|
|
<p id="author">
|
|
|
|
created by <a href="http://twitter.com/0r1g4m14dd1c7">Daniel Kummer</a>
|
|
|
|
<a href="https://twitter.com/share" class="twitter-share-button" data-via="0r1g4m14dd1c7" data-size="large">Tweet</a>
|
|
|
|
<script>!function (d, s, id) {
|
|
|
|
var js, fjs = d.getElementsByTagName(s)[0];
|
|
|
|
if (!d.getElementById(id)) {
|
|
|
|
js = d.createElement(s);
|
|
|
|
js.id = id;
|
|
|
|
js.src = "//platform.twitter.com/widgets.js";
|
|
|
|
fjs.parentNode.insertBefore(js, fjs);
|
|
|
|
}
|
|
|
|
}(document, "script", "twitter-wjs");</script>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p id="desc">efficient branching using git-flow by <a href="http://nvie.com/">Vincent Driessen</a></p>
|
|
|
|
|
|
|
|
<!-- <p id="download">
|
|
|
|
<span class="accent">★</span>
|
|
|
|
<a href="files/git-flow-cheatsheet.pdf"
|
|
|
|
onClick="recordOutboundLink(this, 'Cheat Sheet', 'git-flow-cheatsheet');return false;" class="download">Download
|
|
|
|
as pdf</a>
|
|
|
|
<span class="accent">★</span>
|
|
|
|
</p>-->
|
2012-08-06 19:33:03 +02:00
|
|
|
<img id="head-img" src="/img/git-flow.png" alt="git flow"/>
|
2012-08-05 14:19:48 +02:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
|
2012-08-06 19:33:03 +02:00
|
|
|
<div class="scrollblock">
|
|
|
|
<h2 id="animate1">About</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
git-flow are a set of git extensions to provide high-level repository operations for Vincent
|
|
|
|
Driessen's branching model.
|
|
|
|
<small><a href="http://nvie.com/posts/a-successful-git-branching-model/">more</a></small>
|
|
|
|
</p>
|
|
|
|
<p class="divider">★ ★ ★</p>
|
|
|
|
|
|
|
|
<p>This cheatsheet shows the basic usage and effect of git-flow operations</p>
|
|
|
|
|
|
|
|
<p class="divider">★ ★ ★</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="scrollblock">
|
2012-08-07 19:53:57 +02:00
|
|
|
<h2 id="animate2">Wait for it...</h2>
|
|
|
|
<h3>Sorry, the cheatsheet is still 'in development' - stay tuned</h3>
|
2012-08-06 19:33:03 +02:00
|
|
|
<p class="divider">★ ★ ★</p>
|
2012-08-07 19:53:57 +02:00
|
|
|
<p>Expect a release near the end of august 2012</p>
|
2012-08-06 19:33:03 +02:00
|
|
|
</div>
|
|
|
|
|
2012-08-05 14:19:48 +02:00
|
|
|
|
2012-07-31 12:59:15 +02:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|