-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommand.html
42 lines (27 loc) · 1.08 KB
/
command.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pull Request</title>
</head>
<body bgcolor="aqua">
<h1><center> Git Hub Commands</center></h1>
<pre><b><h2>
Git is the free and open source distributed version control system that's responsible for everything GitHub
related that happens locally on your computer.Commonly used Git commands are given below.</h2><h3><i>
git init - Initialize a local Git repository
git clone(URL) - Create a local copy of a remote repository
git status - To Check status
git add [file-name.txt] - Add a file to the staging area
git commit -m "[commit message]" - Commit changes
git push - Push changes to remote repository
git pull - Update local repository to the newest commit
git pull origin [branch name] - Pull changes from remote repository
</pre></b></h3></i>
<br>
<br>
<a href="index.html">BACK</a>
</body>
</html>