Skip to content

Commit 7ff2899

Browse files
committed
fix fall references
1 parent f7e36ae commit 7ff2899

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

src/lab_0/readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ _Note_: while Cursor and VS Code are applications, the other softwares are insta
4949
You can read more about `forking`, `syncing`, and the overall github flow [here](https://help.github.com/en/github/getting-started-with-github/fork-a-repo).
5050

5151
### 1. Fork the class page
52-
On Gitub, within to our [main repository](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git) and [`fork`](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) this repository into your own account.
52+
On Gitub, within to our [main repository](https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2026.git) and [`fork`](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) this repository into your own account.
5353

5454
To do this, click on the "fork" button on the top right of this github account.
5555

@@ -77,10 +77,10 @@ Copy the link inside there and use it after the `git clone` command in the termi
7777
$ cd PATH_TO_YOUR/FOLDER
7878

7979
# clone your fork to your local computer
80-
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025
80+
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2026
8181

8282
# `cd` (change directory) into this repository
83-
$ cd Interactive-Data-Vis-Fall2025
83+
$ cd Interactive-Data-Vis-Spring2026
8484
```
8585

8686
### 3. Set up remote class repository
@@ -92,26 +92,26 @@ We do this so that you can keep your local branch synced up with the main course
9292
#See current remote branches:
9393

9494
$ git remote -v
95-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025.git (fetch)
96-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025.git (push)
95+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2026.git (fetch)
96+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2026.git (push)
9797

9898
# currently this is only tracking your version of the repository
9999
```
100100

101101
Add an `upstream` remote branch so you can keep yours synced with the main class repository:
102102

103103
```sh
104-
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git
104+
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2026.git
105105
```
106106

107107
Check remote branches again to ensure that the update worked. You should see 2 sets of branches, `origin` which links back to your fork, and `upstream` which references back to the course repository:
108108

109109
```sh
110110
$ git remote -v
111-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025.git (fetch)
112-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025.git (push)
113-
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git (fetch)
114-
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git (push)
111+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2026.git (fetch)
112+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2026.git (push)
113+
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2026.git (fetch)
114+
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2026.git (push)
115115

116116
# now we are tracking both the original and your version of the repository
117117
```

0 commit comments

Comments
 (0)