-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blog1.html
114 lines (92 loc) · 4.9 KB
/
Blog1.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
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog-1 | Blogs | Vidhi Makani</title>
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Vidhi Makani</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link link-active" href="/blogs.html">Blogs</a>
</li>
<li class="list-item-inline">
<a class="link" href="/contact-me.html">Contact Me</a>
</li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading-blog" style="padding-bottom: 0.001%;">Repository with <span style="color: var(--primary-color)">Github Desktop</span></h1>
</header>
<section class="center">
<div class="section w">
<h2>👉Introduction</h2>
<p>GitHub is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, continuous integration, and wikis for every project.Headquartered in California, it has been a subsidiary of Microsoft since 2018.</p>
<h2>✨Let’s get started</h2>
<h4>Step 1 - Create a GitHub account</h4>
<p>If you don’t have a GitHub account, create one, otherwise go log in.</p>
<h4>Step 2 - Download GitHub Desktop</h4>
<p>Download github desktop frome here: <a href="https://desktop.github.com/">GitHub Desktop-Download</a></p>
<p>Then link your github with github desktop</p>
<h4>Step 3 - Create Repository</h4>
<p>File -> New Repository (ctrl+N)</p>
<p>Write your Repository name and description then click on 'create repository' </p>
<h4>Step 4 - Open in VS Code</h4>
<p>After creating Repository click on 'open with VS Code' </p>
<p><b>Note:</b> Visual Studio Code-VS Code is a source-code editor made by Microsoft with the Electron Framework, for Windows, Linux and macOS. Features include support for debugging, syntax highlighting, intelligent code completion, snippets, code refactoring, and embedded Git. you can download vs code frome here:<a href="https://code.visualstudio.com/Download"> VS Code-Download</a></p>
<h4>Step 5 - Create Files and Folders in VS Code</h4>
<p>New File: VS code->File->New File->write filename with extension</p>
<p>New folder: VS code->Explorer->New Folder </p>
<h4>Step 6 - Push Files & folders on Github.</h4>
<p>After creating Files & folders of your project go to Github Desktop and click on 'Push origin' (ctrl+P). it will push your all file and folders on your Github.</p>
<h4>Step 7 - Manage Commits</h4>
<p>If you have some changes on your project than change your code in vs code than go to Github Desktop and write commit massage and discriotion than click on 'push origin'</p>
<h4>Step 8 - See History of your project</h4>
<p>Github Desktop->History, it will show your project history</p>
<h4>Step 9 - Create Branch</h4>
<p>Github Desktop->Branch->New Branch(ctrl+alt+N)->give branch name</p>
<h4>Step 10 - Fetch origin</h4>
<p>Github Desktop->Fetch origin</p>
<p>It will fetch your data from Github.</p>
<p>
👇
</p>
<P>to be continue.....</P>
</div>
</section>
<footer class="footer">
<div class="footer-header">Connect with me on:</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/vidhimakani74">
<img src="images\icons8-github.svg" alt="github logo">
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/VIDHi477">
<img src="images\icons8-twitter (1).svg" alt="twitte logo">
</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://www.linkedin.com/in/vidhi-makani-1876a7223/">
<img src="images\icons8-linkedin-circled.svg" alt="linkdin logo">
</a>
</li>
<li class="list-item-inline">
<a class="link" href="mailto:vidhimakani007@gmail.com">
<img src="images\icons8-gmail-logo.svg" alt="gmail logo">
</a>
</li>
</ul>
</footer>
</body>
</html>