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: workshop/02a-setup-codespace.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ Codespaces auto-save your work. If you close the tab, open [github.com/codespace
57
57
3. Keep this terminal open. It is already inside your practice repository.
58
58
59
59
> [!TIP]
60
-
> If the terminal in your Codespace shows a `$` prompt, the container is ready. If you see an error, see [install troubleshooting](side-quest-06-01-install-troubleshooting.md).
60
+
> If the terminal in your Codespace shows a `$` prompt, the container is ready. If you see a permission error when running `gh auth status`, try `gh auth login` to authenticate.
61
61
62
62
<details>
63
63
<summary>First time in a terminal?</summary>
@@ -76,23 +76,27 @@ The diagram below shows your Codespace connection to GitHub.
76
76
77
77
```bash
78
78
gh --version
79
+
gh auth status
79
80
```
80
81
2. Confirm `gh --version` shows `gh version 2.40.0` or newer.
82
+
3. Confirm `gh auth status` shows you are logged in to `github.com`.
81
83
82
84
_What success looks like:_
83
85
84
86
```text
85
87
gh version 2.40.0 (2024-01-01)
88
+
...
89
+
github.com
90
+
✓ Logged in to github.com as <your-username>
86
91
```
87
92
88
-
You should see `gh version 2.40.0` or newer and a line confirming you're logged in to `github.com`.
89
-
90
93
## ✅ Checkpoint
91
94
92
-
-[ ] You confirmed your GitHub plan includes Codespaces access (free for public repositories)
95
+
-[ ] You confirmed your GitHub plan includes Codespaces access (free tier includes 60 hours/month)
93
96
-[ ] The Codespace editor is open in your browser
94
97
-[ ] The built-in terminal is open in your Codespace
95
98
-[ ]`gh --version` returns version 2.40.0 or newer
99
+
-[ ]`gh auth status` confirms you are logged in to `github.com`
96
100
-[ ] The Codespace is attached to your `my-agentic-workflows` practice repository
0 commit comments