-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from coderefinery/rkdarst/metavars
Change from <name> to NAME metavariables
- Loading branch information
Showing
3 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,10 +156,10 @@ steps from other learners and helpers! | |
### Step A. Clone your maintainer's group repository | ||
|
||
```console | ||
$ git clone <repository-url> centralized-workflow-exercise | ||
$ git clone REPOSITORY-URL centralized-workflow-exercise | ||
``` | ||
|
||
Where `<repository-url>` is the repository created by the exercise | ||
Where `REPOSITORY-URL` is the repository created by the exercise | ||
maintainer. | ||
|
||
**Clone using the SSH path** you get from the webpage (the one that starts with | ||
|
@@ -262,7 +262,7 @@ clicking "Code", copying the SSH URL (starts with `[email protected]:`), | |
and then updating the URL with: | ||
```console | ||
$ git remote set-url origin <ssh-repository-url> | ||
$ git remote set-url origin SSH-REPOSITORY-URL | ||
``` | ||
```` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -294,7 +294,7 @@ clicking "Code", copying the SSH URL (starts with `[email protected]:`), | |
and then updating the URL with: | ||
```console | ||
$ git remote set-url origin <repository-url> | ||
$ git remote set-url origin REPOSITORY-URL | ||
``` | ||
```` | ||
|
||
|
@@ -422,8 +422,8 @@ instead of aliases like `origin` or `upstream`. | |
Here we pull from the central repo and push to our fork: | ||
```console | ||
$ git switch main | ||
$ git pull <central-repository-url> main | ||
$ git push <fork-url> main | ||
$ git pull CENTRAL-REPOSITORY-URL main | ||
$ git push FORK-URL main | ||
``` | ||
Here is a pictorial representation of this part: | ||
|
@@ -441,7 +441,7 @@ Below is a step by step recipe with pictorial representations which hopefully | |
makes clear what happens in each step. | ||
```console | ||
$ git remote add central <central-repository-url> | ||
$ git remote add central CENTRAL-REPOSITORY-URL | ||
$ git fetch central | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters