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/admin/configuration/network-ports.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Application ports provide web application and Git access for end users.
34
34
| 443 | HTTPS | Access to the web application and Git over HTTPS. |
35
35
| 80 | HTTP | Access to the web application. All requests are redirected to the HTTPS port when SSL is enabled. |
36
36
| 22 | SSH | Access to Git over SSH. Supports clone, fetch, and push operations to public and private repositories. |
37
-
| 9418 | Git | Git protocol port supports clone and fetch operations to public repositories with unencrypted network communication. |
37
+
| 9418 | Git | Git protocol port supports clone and fetch operations to public repositories with unencrypted network communication. {% data reusables.enterprise_installation.when-9418-necessary %} |
38
38
39
39
{% data reusables.enterprise_installation.terminating-tls %}
Copy file name to clipboardExpand all lines: content/github/developing-online-with-codespaces/using-codespaces-in-visual-studio-code.md
+19-3Lines changed: 19 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ versions:
10
10
11
11
{% data reusables.codespaces.release-stage %}
12
12
13
-
### Connecting the {% data variables.product.prodname_vs_codespaces %} extension to your {% data variables.product.prodname_dotcom %} account
13
+
### Prerequisites
14
14
15
15
Before you can develop in a codespace directly in {% data variables.product.prodname_vscode %}, you must configure the {% data variables.product.prodname_vs_codespaces %} extension to connect to your {% data variables.product.product_name %} account.
16
16
@@ -29,11 +29,27 @@ Before you can develop in a codespace directly in {% data variables.product.prod
29
29
8. To authorize {% data variables.product.prodname_vscode %} to access your account on {% data variables.product.product_name %}, click **Allow**.
30
30
9. Sign in to {% data variables.product.product_name %} to approve the extension.
31
31
32
-
### Opening a codespace in {% data variables.product.prodname_vscode %}
32
+
### Creating a codespace in {% data variables.product.prodname_vscode %}
33
33
34
-
After you've connected your {% data variables.product.product_name %} account to the {% data variables.product.prodname_vs_codespaces %} extension, you can develop in a codespace that you created on {% data variables.product.product_name %} directly in {% data variables.product.prodname_vscode %}.
34
+
After you connect your {% data variables.product.product_name %} account to the {% data variables.product.prodname_vs_codespaces %} extension, you can develop in a codespace that you created on {% data variables.product.product_name %} or in {% data variables.product.prodname_vscode %}.
35
+
36
+
{% data reusables.codespaces.click-remote-explorer-icon-vscode %}
37
+
2. Click the Add icon, then click **Create New Codespace**.
38
+

39
+
3. Type, then click the repository's name you want to develop in.
40
+

41
+
4. Click the branch you want to develop in.
42
+

43
+
44
+
### Opening a codespace in {% data variables.product.prodname_vscode %}
35
45
36
46
{% data reusables.codespaces.click-remote-explorer-icon-vscode %}
37
47
2. Under Codespaces, click the codespace you want to develop in.
38
48
3. Click the Connect to Codespace icon.
39
49

50
+
51
+
### Deleting a codespace in {% data variables.product.prodname_vscode %}
52
+
53
+
1. Under Codespaces, right-click the codespace you want to delete.
54
+
2. In the drop-down menu, click **Delete Codespace**.
55
+

Copy file name to clipboardExpand all lines: content/rest/guides/basics-of-authentication.md
+1-5Lines changed: 1 addition & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,10 +127,7 @@ application, you should probably use [a library written in the language of your
127
127
128
128
#### Checking granted scopes
129
129
130
-
In the future, users will be able to [edit the scopes you requested][edit scopes post],
131
-
and your application might be granted less access than you originally asked for.
132
-
So, before making any requests with the token, you should check the scopes that
133
-
were granted for the token by the user.
130
+
Users can edit the scopes you requested by directly changing the URL. This can grant your application less access than you originally asked for. Before making any requests with the token, check the scopes that were granted for the token by the user. For more information about requested and granted scopes, see "[Scopes for OAuth Apps](/developers/apps/scopes-for-oauth-apps#requested-scopes-and-granted-scopes)."
134
131
135
132
The scopes that were granted are returned as a part of the response from
136
133
exchanging a token.
@@ -365,7 +362,6 @@ we would've seen the same confirmation dialog from earlier pop-up and warn us.
0 commit comments