You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sessions/create-repo.qmd
+19-17Lines changed: 19 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -80,17 +80,17 @@ will contain files with recipes :yum: :cake: :pizza: :stew:
80
80
| Repository name | This is the name of the repository or project. | Name it `recipes`. |
81
81
| Description | This is a short description of what the repository is for and what it will contain. | Write "This is a practice repository for an introductory GitHub workshop. It includes a few recipes.". |
82
82
| Public or Private | This is whether the repository is visible to everyone (public) or only to you and people you give access to (private). | Leave it as public. |
83
-
| Add a README file | This is a file that is shown on the front page of the repository. It is a good place to put information about the repository. When checked, it will say something about "set main as default branch". You can safely ignore this message. | Make sure it is checked. |
83
+
| Add a README file | This is a file that is shown on the landing page of the repository. It is a good place to put information about the repository. When checked, it will say something about "set main as default branch". You can safely ignore this message. | Make sure it is checked. |
84
84
| Add .gitignore | This is a file that tells Git to ignore certain files or folders. | Leave it unchecked. |
85
85
| Choose a license | This is a file that tells others how they can use the files in the repository. | Leave it unchecked. |
86
86
87
87
: List of options available to set when creating a new repository on
88
88
GitHub. {#tbl-new-repo-options}
89
89
90
90
It's now time to click the **Create repository** button at the bottom of
91
-
the page. After you click the button, you'll be taken to the front page
92
-
of the repository. This is where you can see all the files and folders
93
-
that are currently in this repository.
91
+
the page. After you click the button, you'll be taken to the landing
92
+
page of the repository. This is where you can see all the files and
93
+
folders that are currently in this repository.
94
94
95
95
In this new repository there is only one file: `README.md`. The
96
96
`README.md` file is a common file included in repositories to describe
@@ -107,7 +107,7 @@ workshop, we'll only use them.
107
107
We will start to add and modify files in the repository in the next
108
108
session.
109
109
110
-
## A repositories' front page
110
+
## A repository's landing page
111
111
112
112
::: {.callout-note collapse="true"}
113
113
## :teacher: Teacher note
@@ -123,21 +123,23 @@ two that we will focus on in this workshop:
123
123
- The **\<\> Code** tab: This is where we can see all the files and
124
124
folders in the repository. This is the default tab that is shown
125
125
when you go to a repository.
126
-
- The {{< var issues-icon >}} **Issues** tab: This is where we can see all
127
-
the issues related to the repository.
126
+
- The {{< var issues-icon >}} **Issues** tab: This is where we can see
127
+
all the issues related to the repository.
128
128
129
129
In the files and folders area, you'll see a "table" style layout with a
130
130
"header" that contains the most recent "commit" (we'll cover that later)
131
-
with a "commit" icon {{< var issues-icon >}} on the right-hand side that links to the history
132
-
(that we will also cover later). This view has "columns" for files or
133
-
folders, the commit message relevant to changes made in that particular
134
-
file or folder, and the time when that change was made. Below this file
135
-
and folder area is a display of the `README.md` file that was
136
-
automatically created when we created the repository. GitHub will always
137
-
by default display the contents of a `README.md` file at the bottom of this page if one exists.
138
-
139
-
Even though the repository landing page includes other sections, we won't cover them in
140
-
this workshop. The sections we've mentioned here are the most important and commonly used items.
131
+
with a "commit" icon {{< var issues-icon >}} on the right-hand side that
132
+
links to the history (that we will also cover later). This view has
133
+
"columns" for files or folders, the commit message relevant to changes
134
+
made in that particular file or folder, and the time when that change
135
+
was made. Below this file and folder area is a display of the
136
+
`README.md` file that was automatically created when we created the
137
+
repository. GitHub will always by default display the contents of a
138
+
`README.md` file at the bottom of this page if one exists.
139
+
140
+
Even though the repository landing page includes other sections, we
141
+
won't cover them in this workshop. The sections we've mentioned here are
142
+
the most important and commonly used items.
141
143
142
144
## :technologist: Exercise: Create another repository
0 commit comments