Skip to content

Commit

Permalink
small adjustments in configuration episode
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed Sep 1, 2024
1 parent ef72e39 commit 6d07ee1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $ git config --global init.defaultbranch main

## Useful alias for the command line

We recommend to define an {term}`alias` in Git, to be able to nicely visualize
We recommend to define an {term}`alias` (shortcut) in Git, to be able to nicely visualize
branch structure in the terminal without having to remember a long Git command:
```console
$ git config --global alias.graph "log --all --graph --decorate --oneline"
Expand Down Expand Up @@ -83,7 +83,7 @@ to set other editors, or do a web search for "git set editor to

## Authenticating to GitHub: SSH or HTTPS or VS Code?

**How does GitHub know who you are?** There are three options:
**How does GitHub know who you are?** We discuss here three options:
- **SSH** is the classic method, using [Secure Shell
Protocol](https://en.wikipedia.org/wiki/Secure_Shell) remote connection
keys.
Expand Down Expand Up @@ -112,7 +112,7 @@ Test which one you should use:
instructions](https://coderefinery.github.io/installation/ssh/) to
set up SSH access.

**From now on, if you know that SSH works, you should always select
From now on, **if you know that SSH works, you should always select
SSH as the clone URL from GitHub, or translate the URL to start with
the right thing yourself:** `[email protected]:` (with the `:`).
::::
Expand All @@ -137,7 +137,7 @@ Test which one you should use:
through the process. If you are using VS Code, you can skip the SSH and
HTTPS checks.

From now on, you should **Select HTTPS as the clone URL from
From now on, you should **select HTTPS as the clone URL from
GitHub, or translate the URL to start with the right thing
yourself:** `https://github.com/`

Expand Down

0 comments on commit 6d07ee1

Please sign in to comment.