Skip to content

Commit 007fc36

Browse files
update mi-github-issues.md (fixes #3622) (#3623)
1 parent 0102098 commit 007fc36

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pages/mi/mi-github-issues.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,17 @@ Before you create your branch, sync your repository with the following commands
6262
```sh
6363
git push origin master
6464
```
65+
66+
**Note:** If you encounter an error when running `git fetch upstream` (for example, `fatal: 'upstream' does not appear to be a git repository`), it means your upstream remote is not configured.
67+
68+
To fix this, run:
69+
```sh
70+
git remote add upstream https://github.com/open-learning-exchange/open-learning-exchange.github.io.git
71+
```
72+
Then retry:
73+
```sh
74+
git fetch upstream
75+
```
6576

6677
**ATTENTION**: From now on, for the rest of the First Steps, please use the command line to create branches and make commits instead of using GitHub’s web interface. This will give you valuable practice with common Git commands in your terminal, which is essential for working on real code that needs to be tested locally and can’t always be edited directly on GitHub.com.
6778

0 commit comments

Comments
 (0)