-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDownlodgithub.html
60 lines (58 loc) · 3.27 KB
/
Downlodgithub.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Git- Download</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/download.css">
</head>
<body>
<!-- Nav Bar -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Main Menu</a>
<a href="create_Git_Acc.html">Create Github Account</a>
<a href="Downlodgithub.html">Git for PC</a>
<a href="create_repo.html">Repository</a>
<a href="fork.html">Fork</a>
<a href="Clone.html">Clone</a>
<a href="Push.html">Push</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<script>
function openNav() { document.getElementById("mySidenav").style.width = "250px";}
function closeNav() { document.getElementById("mySidenav").style.width = "0";}
</script>
<div class="container">
<p>
<h4>How to download Git for Computer?</h4><br>
Download Git for your personal computeras per operating system by clicking the below button.
</p>
<a href="https://git-scm.com/downloads" class="btn btn-primary btn-lg active" role="button" aria-pressed="true" target="_blank">Git- Download</a>
<p>
<p>Now open the downloaded file and simply install the program in your PC.</p>
<p><strong>Now before using you have to config your PC</strong></p>
<p>Attaching a PDF that provide you how to config.</p>
<a href="assets/Git Cheat Sheet.pdf" class="btn btn-primary btn-lg active" role="button" aria-pressed="true" target="_blank">Git cheat</a>
</p>
<p>
<h5>But befor pushing repo's you have to generate SSH key.</h5>
<p>so,<h2>What is SSH key?</h2></p>
<p>
<p> When working with a GitHub repository, you'll often need to identify yourself to GitHub using your username and password.</p>
<p>An SSH key is an alternate way to identify yourself that doesn't require you to enter you username and password every time.
SSH keys come in pairs, a public key that gets shared with services like GitHub, and a private key that is stored only on your computer.
If the keys match, you're granted access.</p>
<p> The cryptography behind SSH keys ensures that no one can reverse engineer your private key from the public one.</p>
<p><a href="https://www.youtube.com/watch?v=z7jVOenqFYk" class="btn btn-primary btn-lg active" role="button" aria-pressed="true" target="_blank">You tube</a>
</p>
<h4>How to add SSH Key?</h4>
<a href="https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/connecting-to-github-with-ssh" class="btn btn-primary btn-lg active" role="button" aria-pressed="true" >Official site</a>
<br><br>
<p>
<a href="https://www.youtube.com/watch?v=WgZIv5HI44o" class="btn btn-primary btn-lg active" role="button" aria-pressed="true" target="_blank">You tube video</a>
</p>
</p>
</p>
</div>
</body>
</html>