Skip to content

Commit f3ffaf7

Browse files
authored
Merge pull request #5824 from github/repo-sync
repo sync
2 parents bcbb818 + 4fb4d58 commit f3ffaf7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

content/developers/overview/using-ssh-agent-forwarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ $ ssh-add <em>yourkey</em>
149149
150150
{% tip %}
151151
152-
On Mac OS X, `ssh-agent` will "forget" this key, once it gets restarted during reboots. But you can import your SSH keys into Keychain using this command:
152+
On macOS, `ssh-agent` will "forget" this key, once it gets restarted during reboots. But you can import your SSH keys into Keychain using this command:
153153
154154
```shell
155155
$ ssh-add -K <em>yourkey</em>

content/github/authenticating-to-github/checking-for-existing-gpg-keys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ topics:
1515

1616
{% note %}
1717

18-
**Note:** GPG does not come installed by default on OS X or Windows. To install GPG command line tools, see [GnuPG's Download page](https://www.gnupg.org/download/).
18+
**Note:** GPG does not come installed by default on macOS or Windows. To install GPG command line tools, see [GnuPG's Download page](https://www.gnupg.org/download/).
1919

2020
{% endnote %}
2121

content/github/authenticating-to-github/recovering-your-ssh-key-passphrase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ topics:
1515

1616
{% mac %}
1717

18-
If you [configured your SSH passphrase with the OS X Keychain](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain), you may be able to recover it.
18+
If you [configured your SSH passphrase with the macOS keychain](/articles/working-with-ssh-key-passphrases#saving-your-passphrase-in-the-keychain), you may be able to recover it.
1919

2020
1. In Finder, search for the **Keychain Access** app.
2121
![Spotlight Search bar](/assets/images/help/setup/keychain-access.png)

content/github/authenticating-to-github/working-with-ssh-key-passphrases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ The `ssh-agent` process will continue to run until you log out, shut down your c
8989

9090
### Saving your passphrase in the keychain
9191

92-
On OS X Leopard through OS X El Capitan, these default private key files are handled automatically:
92+
On Mac OS X Leopard through OS X El Capitan, these default private key files are handled automatically:
9393

9494
- *.ssh/id_rsa*
9595
- *.ssh/identity*

content/github/getting-started-with-github/configuring-git-to-handle-line-endings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ versions:
1515

1616
Every time you press <kbd>return</kbd> on your keyboard you insert an invisible character called a line ending. Different operating systems handle line endings differently.
1717

18-
When you're collaborating on projects with Git and {% data variables.product.product_name %}, Git might produce unexpected results if, for example, you're working on a Windows machine, and your collaborator has made a change in OS X.
18+
When you're collaborating on projects with Git and {% data variables.product.product_name %}, Git might produce unexpected results if, for example, you're working on a Windows machine, and your collaborator has made a change in macOS.
1919

2020
You can configure Git to handle line endings automatically so you can collaborate effectively with people who use different operating systems.
2121

@@ -25,11 +25,11 @@ The `git config core.autocrlf` command is used to change how Git handles line en
2525

2626
{% mac %}
2727

28-
On OS X, you simply pass `input` to the configuration. For example:
28+
On macOS, you simply pass `input` to the configuration. For example:
2929

3030
```shell
3131
$ git config --global core.autocrlf input
32-
# Configure Git to ensure line endings in files you checkout are correct for OS X
32+
# Configure Git to ensure line endings in files you checkout are correct for macOS
3333
```
3434

3535
{% endmac %}

0 commit comments

Comments
 (0)