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/get-started/start-your-journey/hello-world.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -61,9 +61,9 @@ This diagram shows:
61
61
62
62
* The `main` branch
63
63
* A new branch called `feature`
64
-
* The journey that `feature` takes before it's merged into `main`
64
+
* The journey that `feature` takes through stages for "Commit changes," "Submit pull request," and "Discuss proposed changes" before it's merged into `main`
65
65
66
-

66
+

Copy file name to clipboardexpand all lines: content/get-started/using-git/getting-changes-from-a-remote-repository.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,11 @@ You can choose from [several different URLs](/get-started/getting-started-with-g
30
30
31
31
{% ifversion global-nav-update %}
32
32
33
-

33
+

34
34
35
35
{% else %}
36
36
37
-

37
+

Copy file name to clipboardexpand all lines: content/get-started/using-git/splitting-a-subfolder-out-into-a-new-repository.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ If you create a new clone of the repository, you won't lose any of your Git hist
63
63
64
64
1. At the top of your new repository on {% data variables.product.prodname_dotcom %}'s Quick Setup page, click {% octicon "copy" aria-label="Copy to clipboard" %} to copy the remote repository URL.
65
65
66
-

66
+

67
67
68
68
> [!TIP]
69
69
> For information on the difference between HTTPS and SSH URLs, see [AUTOTITLE](/get-started/getting-started-with-git/about-remote-repositories).
Copy file name to clipboardexpand all lines: content/get-started/using-github-docs/using-hover-cards-on-github-docs.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ redirect_from:
14
14
15
15
When you're reading an article on {% data variables.product.prodname_docs %} and find a link to another article, you can open a hover card to get more information about the article. The hover card provides basic information about the article, so you can determine whether it will be useful to you without leaving the article you're reading.
16
16
17
-
If you navigate {% data variables.product.prodname_docs %} with a mouse, the hover card is displayed when you hover the cursor over a link.
17
+
If you navigate {% data variables.product.prodname_docs %} with a mouse, the hover card is displayed when you hover the cursor over a link. The card shows the article's location, title, and introduction.
18
18
19
-

19
+

Copy file name to clipboardexpand all lines: content/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,11 @@ To create a heading, add one to six <kbd>#</kbd> symbols before your heading tex
22
22
### A third-level heading
23
23
```
24
24
25
-

25
+

26
26
27
27
When you use two or more headings, GitHub automatically generates a table of contents that you can access by clicking {% octicon "list-unordered" aria-label="The unordered list icon" %} within the file header. Each heading title is listed in the table of contents and you can click a title to navigate to the selected section.
28
28
29
-

29
+

30
30
31
31
## Styling text
32
32
@@ -53,9 +53,9 @@ Text that is not a quote
53
53
> Text that is a quote
54
54
```
55
55
56
-
Quoted text is indented, with a different type color.
56
+
Quoted text is indented with a vertical line on the left and displayed using gray type.
57
57
58
-

58
+

59
59
60
60
> [!NOTE]
61
61
> When viewing a conversation, you can automatically quote text in a comment by highlighting the text, then typing <kbd>R</kbd>. You can quote an entire comment by clicking {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}, then **Quote reply**. For more information about keyboard shortcuts, see [AUTOTITLE](/get-started/accessibility/keyboard-shortcuts).
@@ -68,7 +68,7 @@ You can call out code or a command within a sentence with single backticks. The
68
68
Use `git status` to list all new or modified files that haven't yet been committed.
69
69
```
70
70
71
-

71
+

72
72
73
73
To format code or text into its own distinct block, use triple backticks.
74
74
@@ -81,7 +81,7 @@ git commit
81
81
```
82
82
````
83
83
84
-

84
+

85
85
86
86
For more information, see [AUTOTITLE](/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks).
87
87
@@ -95,7 +95,7 @@ In issues, pull requests, and discussions, you can call out colors within a sent
95
95
The background color is `#ffffff` for light mode and `#000000` for dark mode.
96
96
```
97
97
98
-

98
+

99
99
100
100
Here are the currently supported color models.
101
101
@@ -306,9 +306,9 @@ To create a nested list using the web editor on {% data variables.product.produc
306
306
> [!NOTE]
307
307
> In the web-based editor, you can indent or dedent one or more lines of text by first highlighting the desired lines and then using <kbd>Tab</kbd> or <kbd>Shift</kbd>+<kbd>Tab</kbd> respectively.
308
308
309
-

309
+

310
310
311
-

311
+

312
312
313
313
To create a nested list in the comment editor on {% data variables.product.product_name %}, which doesn't use a monospaced font, you can look at the list item immediately above the nested list and count the number of characters that appear before the content of the item. Then type that number of space characters in front of the nested list item.
314
314
@@ -319,7 +319,7 @@ In this example, you could add a nested list item under the list item `100. Firs
319
319
- First nested list item
320
320
```
321
321
322
-

322
+

323
323
324
324
You can create multiple levels of nested lists using the same method. For example, because the first nested list item has seven characters (`␣␣␣␣␣-␣`) before the nested list content `First nested list item`, you would need to indent the second nested list item by at least two more characters (nine spaces minimum).
325
325
@@ -329,7 +329,7 @@ You can create multiple levels of nested lists using the same method. For exampl
329
329
- Second nested list item
330
330
```
331
331
332
-

332
+

333
333
334
334
For more examples, see the [GitHub Flavored Markdown Spec](https://github.github.com/gfm/#example-265).
335
335
@@ -458,7 +458,7 @@ You can tell {% data variables.product.product_name %} to ignore (or escape) Mar
458
458
459
459
`Let's rename \*our-new-project\* to \*our-old-project\*.`
460
460
461
-

461
+

462
462
463
463
For more information on backslashes, see Daring Fireball's [Markdown Syntax](https://daringfireball.net/projects/markdown/syntax#backslash).
Copy file name to clipboardexpand all lines: content/get-started/writing-on-github/working-with-advanced-formatting/about-task-lists.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ If you add a task list to the body of an issue, the list has added functionality
36
36
* If a task requires further tracking or discussion, you can convert the task to an issue by hovering over the task and clicking {% octicon "issue-opened" aria-label="The issue opened icon" %} in the upper-right corner of the task. To add more details before creating the issue, you can use keyboard shortcuts to open the new issue form. For more information, see [AUTOTITLE](/get-started/accessibility/keyboard-shortcuts#issues-and-pull-requests).
37
37
* Any issues referenced in the task list will specify that they are tracked in the referencing issue.
38
38
39
-

39
+

40
40
41
41
{% endif %}
42
42
@@ -61,13 +61,13 @@ You can reorder tasks across different lists in the same comment, but you cannot
61
61
62
62
You can also convert tasks into issues. First, hover over one of the items in your task list and then click {% octicon "issue-opened" aria-label="Convert to issue" %}.
63
63
64
-
{% ifversion fpt or ghec %} {% endif %}
64
+
{% ifversion fpt or ghec %} {% endif %}
65
65
66
66
## Navigating tracked issues
67
67
68
-
Any issues that are referenced in a task list specify that they are tracked by the issue that contains the task list. To navigate to the tracking issue from the tracked issue, click on the tracking issue number in the **Tracked in** section next to the issue status.
68
+
Any issues that are referenced in a task list specify that they are tracked by the issue that contains the task list. To navigate to the tracking issue from the tracked issue, click on the tracking issue number in the **Tracked by** section next to the issue status.
69
69
70
-

70
+

Copy file name to clipboardexpand all lines: content/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ shortTitle: Auto linked references
18
18
19
19
`Visit https://github.com`
20
20
21
-

21
+

22
22
23
23
For more information on creating links, see [AUTOTITLE](/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#links).
Copy file name to clipboardexpand all lines: content/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ function test() {
25
25
```
26
26
````
27
27
28
-

28
+

29
29
30
30
> [!TIP]
31
31
> To preserve your formatting within a list, make sure to indent non-fenced code blocks by eight spaces.
@@ -40,7 +40,7 @@ Look! You can see my backticks.
40
40
````
41
41
`````
42
42
43
-

43
+

44
44
45
45
{% data reusables.user-settings.enabling-fixed-width-fonts %}
Copy file name to clipboardexpand all lines: content/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ For example, you can create a TopoJSON map by specifying coordinates and shapes.
134
134
```
135
135
````
136
136
137
-

137
+

138
138
139
139
For more information on working with `.geojson` and `.topojson` files, see [AUTOTITLE](/repositories/working-with-files/using-files/working-with-non-code-files#mapping-geojson-files-on-github).
140
140
@@ -179,6 +179,6 @@ endsolid
179
179
```
180
180
````
181
181
182
-

182
+

183
183
184
184
For more information on working with `.stl` files, see [AUTOTITLE](/repositories/working-with-files/using-files/working-with-non-code-files#3d-file-viewer).
0 commit comments