-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUse.html
43 lines (41 loc) · 1.58 KB
/
Use.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="gtheme.css">
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
</head>
<body>
<img src="./GImages/GitFitLogo.png"> </img>
<h1>
How do I do use Git and Github?
</h1>
<p>
Using Github is simple. All you do is create an account, and the buttons on Github will guide you most of the way. The hard part, though is Git. For Git, you need access to the terminal, or command-line. This is where if you are on Windows, you are out of luck. I am not sure how the Dos Shell works. However, you may be able to git (pun-intended again) away with using the Linux subsystem. I digress, though.
</p>
<p>
Now, a command-line is an app with no graphics, unless you count text. Commands will be written like this example <code>cd ..</code>.
</p>
<p>
Commands will be tricky to learn, but once you get the hang of it, you'll be just typing away on the terminal.
</p>
<section class="button">
<button onclick="location.href='./GitIs.html'">
← Previous
</button>
</section>
<section class="button">
<button onclick="location.href='./index.html'">
🏠 Home
</button>
</section>
<section class="button">
<button onclick="location.href='./Ninja.html'">
Next →
</button>
</section>
<footer>
<p>
Copyright Manas Paranjape, 2020. You may use this as long as the source is noted.
</p>
</footer>
</body>