forked from scars377/git-cheatsheet-cht
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.75 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Git Cheatsheet 正體中文版</title>
<meta name="description" content="互動式 Git 速查表,依執行對象分類指令">
<link rel="stylesheet" href="styles/1200.css" type="text/css"/>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-70609718-1', 'auto');
ga('send', 'pageview');
</script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js'></script>
<script src='scripts/csster.js'></script>
<script src='scripts/styles.js'></script>
<script src='scripts/commands.js'></script>
<script src='scripts/base.js'></script>
<script src='scripts/git-cheatsheet.js' type="text/javascript"></script>
</head>
<body class=>
<div id="hd" class="container_16">
<h1 class="grid_8 alpha" data-docs="依執行對象分類指令的 Git 速查表">
Git Cheatsheet Cht
</h1>
<div class="grid_8 omega">
<h2 data-docs="another visualization from Andrew Peterson, NDP Software.">
<a href="http://ndpsoftware.com">an interaction from NDP Software</a>
</h2>
<h6>(c) Andrew Peterson 2009-2012 All Rights Reserved.</h6>
<h3>
<a href="https://github.com/scars377/git-cheatsheet-cht/">
Fork me on Github
</a> /
<a href="http://www.ndpsoftware.com/git-cheatsheet.html">
Git Cheatsheet (Original)
</a>
</h3>
</div>
</div>
<div class="clear"></div>
<div id="diagram" class="container_16">
<div id="stash" class="loc grid_2 alpha"
data-docs='當你切換手頭工作時,可以把未完成的修改暫存在這裡'><label>stash</label></div>
<div id="workspace" class="loc grid_4"
data-docs='本地文件'><label>工作目錄</label></div>
<div id="index" class="loc grid_3"
data-docs="index 又叫 staging area,存放著工作目錄的快照,此快照中的內容將會在 commit 時提交至版本庫。">
<label>index</label>
</div>
<div id="local_repo" class="loc grid_4"
data-docs="常見的分支有:master、dev (用於本地開發)、feature_x、bugfix_y"
><label>本地版本庫</label>
</div>
<div id="remote_repo" class="loc grid_3 omega"
data-docs="預設為 'origin'。常見的分支有:master、shared_feature_x、release_y"
><label>服務器</label>
</div>
<div id="commands">
</div>
<div id="info">
<div class="screen"></div>
<div class="cmd"> </div>
<div class="doc"> </div>
</div>
</div>
</body>
</html>