-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathquick-start-creating-a-github-profile-readme.html
114 lines (91 loc) · 3.14 KB
/
quick-start-creating-a-github-profile-readme.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
113
114
<!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>Creating a Profile README </title>
</head>
<body>
<h1>Create a Profile README.md </h1>
<h2>Overview</h2>
<p>
A profile README.md is a Markdown file that shares information about yourself and appears on your GitHub
profile.
</p>
<p>
This quikstart guides you through:
</p>
<ul>
<li>
Creating a repository for your GitHub profile README.md
</li>
<li>
Editing your GitHub profile README.md
</li>
</ul>
</p>
<h2>Part 1: Create a repository for README.md</h2>
<p>
To create a profile README.md file, you must create a repository and name it the same as your GitHub username.
</p>
<ol>
<li>Log on to your GitHub account at <a href="https://www.github.com">https://www.github.com</a>.
<p>
<strong>Step Result</strong>: After you have logged on, you are directed to the homepage of your GitHub
account.
</p>
</li>
<li>
In the navigation menu, click <strong>New</strong>.
</li>
<li>
On the <strong>Create a New Repository</strong> page, do the following:
<ol>
<li>
For the <strong>Repository name</strong>, enter your GitHub username.
</li>
<li>
<em>Optional</em>: For the <strong>Description</strong>, enter a description of your repository.
</li>
<li>
Keep the default setting to <strong>Public</strong>.
<p>
<strong>Note</strong>: Selecting <strong>Private</strong> makes your profile README.md file
publicly inaccessible.
</p>
</li>
<li>
Under <strong>Initialize this repository with</strong>, select the <strong>Add README
file</strong> checkbox.
</li>
<li>
Click <strong>Create a repository</strong>.
</li>
</ol>
</li>
</ol>
<p>
<strong>Results</strong>: The repository and profile README.md file are created.
</p>
<h2>Part 2: Edit the profile README.md</h2>
<p>
You can edit the profile README.md to share information about yourself, your work, your skills, and other
relevant information.
</p>
<ol>
<li>
Locate and open your profile repository.
</li>
<li>
In the side pane, click <strong>Edit README</strong>.
</li>
<li>
When you are finished adding content to your profile README.md file, click <strong>Commit changes</strong>.
</li>
</ol>
<p>
<strong>Results</strong>: Your profile README.md file is updated and appears in your GitHub profile.
</p>
</body>
</html>