-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomandos_git.html
More file actions
31 lines (29 loc) · 991 Bytes
/
comandos_git.html
File metadata and controls
31 lines (29 loc) · 991 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>git controle de versoe</title>
</head>
<body>
<!--lista-->
<ul>
<li>git status</li>
<li>git add nome do arquivo</li>
<li>git commit -m 'mensagen descritiva'</li>
<li>git log</li>
<li>git log -p</li>
<li>git remote</li>
<li>git remote add nome_do_servido /c/alura/git-hub_git/nair/projeto</li>
<li>git remote -v</li>
<li>git init</li>
<li>git init --bare</li>
<li>git remote rename origin domingo_servido</li>
<li>git pull domingo_servido master(puxar)</li>
<li>git push domingo_servido master(enviar)</li>
<li>git clone /c/alura/git-hub_git/nair/projeto</li>
<li>git branch</li>
<li>git checkout titulo</li>
<li>git checkout -b titulo</li>
<li>git merge titulo</li>
</ul>
</body>
</html>