-
Notifications
You must be signed in to change notification settings - Fork 1
/
create_repo.html
77 lines (72 loc) · 4.41 KB
/
create_repo.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
<!DOCTYPE html>
<html>
<head>
<title>Creating Repositires</title>
</head>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/repo.css">
<link rel="stylesheet" href="assets/fonts/Merriweather-BoldItalic.ttf">
<link rel="stylesheet" href="assets/fonts/Merriweather-Light.ttf">
<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">
<h2><strong>What is Repository?</strong></h2>
<p style="font-size:x-large; font-style: italic;font-weight: 200;">
A repository is like a folder for your project. Your project's repository contains all of your project's files and stores each file's revision history. You can also discuss and manage your project's work within the repository.
</p>
<p style="font-size: large; font-style: italic;">
You can own repositories individually, or you can share ownership of repositories with other people in an organization.<br><br>
You can restrict who has access to a repository by choosing the repository's visibility. <br><br>
For user-owned repositories, you can give other people collaborator access so that they can collaborate on your project. If a repository is owned by an organization, you can give organization members access permissions to collaborate on your repository.
</p>
<br><br>
<h2><strong>How to create a Github ID?</strong></h2>
<div>
<ul>
<li><strong>step 1:</strong> After successfully setting up <span><a href="https://github.com/" style="color: black;"><strong>Github</strong></a></span> account login to your account. You will see the screen as below.<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190826232755/1403.png"> </li>
<br><br>
<li><strong>step 2:</strong> Click on the <span><a href="https://github.com/new" style="color: black;"><strong>new repository</strong></a></span> option.<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190826233513/223-1.png"/></li>
<br><br>
<li><strong>Step 3:</strong> After clicking <span><a href="https://github.com/new" style="color: black;"><strong>repository</strong></a></span> option, we will have to initialize some things like, <strong>naming our project</strong>, choosing the <strong>visibility</strong> etc. After performing these steps click <span><a href="https://github.com/new" style="color: black;"><strong>repository</strong></a></span> button.<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190826235103/4-155.png"></li>
<br><br>
<li><strong>Step 4:</strong> After clicking the button, we will be directed to below page. Right now the only file we have is a readme file.<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190826235816/542.png"></li>
<br><br>
<li><strong>Step 5:</strong> Now click on the “Upload files” button.<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190827000113/639.png"></li>
<br><br>
<li><strong>Step 5:</strong> Follow the steps mentioned in the Picture below and click “commit changes”<br />
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190827000948/726.png"></li>
<br><br>
<li><strong>step 6:</strong> Now you will see that all of our files uploaded in our github<br/>
<br>
<img src="https://media.geeksforgeeks.org/wp-content/uploads/20190827001201/824.png"/></li>
</ul>
</div>
</div>
</body>
</html>