-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 loc) · 1.82 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Comandos GIT</title>
</head>
<body>
<h1>Comandos GitHub</h1>
<h2>git -h</h2>
<h3>start a working area</h3>
<ul>
<li><a href="clone.html">clone</a> Clone a repository into a new directory</li>
<li>init - Create an empty Git repository or reinitialize an existing one</li>
</ul>
<h3>work on the current change</h3>
<ul>
<li>add - Add file contents to the index</li>
<li>mv - Move or rename a file, a directory, or a symlink</li>
<li>restore - Restore working tree files</li>
<li>rm - Remove files from the working tree and from the index</li>
</ul>
<h3>examine the history and state</h3>
<ul>
<li>bisect - Use binary search to find the commit that introduced a bug</li>
<li>diff - Show changes between commits, commit and working tree, etc</li>
<li>grep - Print lines matching a pattern</li>
<li>log - Show commit logs</li>
<li>show - Show various types of objects</li>
<li>status - Show the working tree status</li>
</ul>
<h3>grow, mark and tweak your common history</h3>
<ul>
<li>branch - List, create, or delete branches</li>
<li>commit - Record changes to the repository</li>
<li>merge - Join two or more development histories together</li>
<li>rebase - Reapply commits on top of another base tip</li>
<li>reset - Reset current HEAD to the specified state</li>
<li>switch - Switch branches</li>
<li>tag - Create, list, delete or verify a tag object signed with GPG</li>
</ul>
<h3>collaborate</h3>
<ul>
<li>fetch - Download objects and refs from another repository</li>
<li>pull - Fetch from and integrate with another repository or a local branch</li>
<li>push - Update remote refs along with associated objects</li>
</ul>
</body>
</html>