-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (103 loc) · 3.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="OOP exam questions">
<title>
Шпаргалка по Git
</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header exam">
<h2>
Шпаргалка по Git
</h2>
</div>
<div class="exam" id="table">
<table>
<caption>Команды Git</caption>
<tr>
<th>Команда</th>
<th>Описание</th>
</tr>
<tr>
<td>git init</td>
<td>-</td>
</tr>
<tr>
<td>git init</td>
<td>-</td>
</tr>
<tr>
<td>git clone url</td>
<td>-</td>
</tr>
<tr>
<td>git add file</td>
<td>-</td>
</tr>
<tr>
<td>git add .</td>
<td>-</td>
</tr>
<tr>
<td>git commit -m "comment"</td>
<td>-</td>
</tr>
<tr>
<td>git commit -a -m "comment"</td>
<td>-</td>
</tr>
<tr>
<td>git push url</td>
<td>-</td>
</tr>
<tr>
<td>git status</td>
<td>-</td>
</tr>
<tr>
<td>git log</td>
<td>-</td>
</tr>
<tr>
<td>git branch branch_name</td>
<td>-</td>
</tr>
<tr>
<td>git checkout branch_name</td>
<td>-</td>
</tr>
<tr>
<td>git checkout -b branch_name</td>
<td>-</td>
</tr>
<tr>
<td>git remote</td>
<td>-</td>
</tr>
</table>
</div >
<div class="exam">
<h4>Тесты на знание команд Git</h4>
<ol >
<li><a href="https://progtask.ru/test-po-git/">Тест по Git</a></li>
<li><a href="https://www.learnqa.ru/gittest">Тест на знание Git</a></li>
<li><a href="https://itproger.com/test/git">Тест на знание основ Git</a></li>
</ul>
</div>
<footer>
<div class="exam">
<lh>Полезные ссылки</lh>
<ul>
<li><a class="foo" href="https://labs-org.ru/html/">html</a></li>
<li><a class="foo" href="https://labs-org.ru/css/">css</a></li>
<li><a class="foo" href="https://medium.com/@vvladislavv/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B0-%D0%BF%D0%BE-%D0%BE%D1%81%D0%BD%D0%BE%D0%B2%D0%B0%D0%BC-git-github-dcd6b91406a8">Шпаргалка по основам Git</a></li>
<li><a class="foo" href="https://training.github.com/downloads/ru/github-git-cheat-sheet/">Команды Git</a></li>
<li><a class="foo" href="https://proglib.io/p/git-cheatsheet">Шпаргалка по Git, в которой представлены основные команды</a></li>
</ul>
</div>
</footer>
</body>
</html>