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
- List repository pull requests with `gh pr list`.
94
-
- List repository pull requests whose state is `closed` with `gh pr list -s closed`.
95
-
- View details about a pull request with `gh pr view <PR_ID>`.
103
+
- List repository issues:
104
+
105
+
```console
106
+
gh issue list
107
+
```
108
+
109
+
- List repository pull requests:
110
+
111
+
```console
112
+
gh pr list
113
+
```
114
+
115
+
- List repository pull requests whose state is `closed`:
116
+
117
+
```console
118
+
gh pr list -s closed
119
+
```
120
+
121
+
- View details about a pull request:
122
+
123
+
```console
124
+
gh pr view <PR_ID>
125
+
```
126
+
127
+
where `<PR_ID>` is the PR number.
96
128
97
129
## Create Work GitHub Repository
98
130
@@ -224,7 +256,8 @@ For this, do the following:
224
256
1. Ask someone around you for their GitHub username.
225
257
Add them to the repository as collaborator.
226
258
227
-
1. Ask them to confirm the invite via e-mail or by accessing the invitation URL: `https://github.com/<your-github-username>/workshop-github/invitations`
259
+
1. Ask them to confirm the invite via e-mail or by accessing the invitation URL: `https://github.com/<your-github-username>/workshop-github/invitations`.
260
+
Replace `<your-github-username>` with your GitHub username.
228
261
229
262
1. Ask them to approve your pull request.
230
263
@@ -284,7 +317,7 @@ Before this, do a reset of your repository:
284
317
./gh-reset-repo.sh
285
318
```
286
319
287
-
Each of view should now:
320
+
Each of you should do the following:
288
321
289
322
1. Create of fork of the other's repository.
290
323
Be sure to give it a different name, not to clash with your own `workshop-github` repository name.
@@ -296,6 +329,8 @@ Each of view should now:
296
329
cd <clone_directory>
297
330
```
298
331
332
+
where `<fork_url>` is the URL of the other's repository, and `<clone_directory>` is the directory of the repository clone.
333
+
299
334
1. Create a branch and commit(s) from `c-bye`.
300
335
301
336
1. Push the branch to the `origin` remote (belonging to your fork).
0 commit comments