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: content/full-day/3-codespaces.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,7 +120,7 @@ Custom containers for GitHub Codespaces become part of the source code for the r
120
120
> For purposes of this exercise we are pushing code updates directly to `main`, our default branch. Normally you would follow the [GitHub flow][github-flow], which we will do in a [later exercise][github-flow-exercise].
121
121
122
122
1. Open a new terminal window in the codespace by selecting <kbd>Ctl</kbd> + <kbd>Shift</kbd> + <kbd>`</kbd> or clicking ☰ → View → Terminal.
123
-
1. Find the issue number for defining the codespace by entering the following command:
123
+
2. Find the issue number for defining the codespace by entering the following command:
124
124
125
125
```bash
126
126
gh issue list
@@ -129,7 +129,7 @@ Custom containers for GitHub Codespaces become part of the source code for the r
129
129
> [!NOTE]
130
130
> It will likely be #1. You'll use this number later in this exercise.
131
131
132
-
1. Stage all files, commit the changes with a message to resolve the issue, and push to main by entering the following command in the terminal window, replacing `<ISSUE_NUMBER>` with the number you obtained in the previous step:
132
+
3. Stage all files, commit the changes with a message to resolve the issue, and push to main by entering the following command in the terminal window, replacing `<ISSUE_NUMBER>` with the number you obtained in the previous step:
133
133
134
134
```bash
135
135
git add .
@@ -139,13 +139,13 @@ Custom containers for GitHub Codespaces become part of the source code for the r
139
139
> [!NOTE]
140
140
> If prompted, select **Allow** to enable copy/paste for the codespace.
141
141
142
-
1. When the command completes, enter the following to list all open issues:
142
+
4. When the command completes, enter the following to list all open issues:
143
143
144
144
```bash
145
145
gh issue list
146
146
```
147
147
148
-
1. Note the issue for defining a codespace is no longer listed; you completed it and marked it as such with your pull request!
148
+
5. Note the issue for defining a codespace is no longer listed; you completed it and marked it as such with your pull request!
0 commit comments