Skip to content

Commit 3875b21

Browse files
committed
fix build
1 parent 8ff5fee commit 3875b21

File tree

3 files changed

+12
-185
lines changed

3 files changed

+12
-185
lines changed

src/lab_0/git_setup.md

Lines changed: 0 additions & 114 deletions
This file was deleted.

src/lab_0/index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ This repository is _your_ personal copy of the existing repository. This will be
5050

5151
We use [Github Pages](https://docs.github.com/en/pages/getting-started-with-github-pages/what-is-github-pages) to serve our websites publicly. Github Pages is static site hosting service that takes HTML, CSS, and JavaScript files straight from a repository on GitHub, optionally runs the files through a build process, and publishes a website.
5252

53-
To [set up your github pages site](https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site#creating-your-site), you can go to your repository's `Settings` tab and then scroll down to `Pages` section. Select `Github Actions` as source ("Deploy from a branch") and then your site will be avallable at `https://[YOUR_USERNAME].github.io/[YOUR_REPOSITORY_NAME]/`. *NOTE*: You must navidate in the URL to a folder with an index.html, or else you will get a 404. This will take a few minutes to update with any pushed changes.
53+
<!-- To [set up your github pages site](https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site#creating-your-site), you can go to your repository's `Settings` tab and then scroll down to `Pages` section. Select `Github Actions` as source ("Deploy from a branch") and then your site will be avallable at `https://[YOUR_USERNAME].github.io/[YOUR_REPOSITORY_NAME]/`. *NOTE*: You must navidate in the URL to a folder with an index.html, or else you will get a 404. This will take a few minutes to update with any pushed changes. -->
5454

55-
<img src='../lib/assets/pages.png' width='500px'>
55+
<!-- <img src='../lib/assets/pages.png' width='500px'> -->
5656

5757
### 3. On GitHub, navigate to **your fork** of the repository and clone it to your local computer.
5858

@@ -65,40 +65,40 @@ To do this, navigate to the folder where you want to save your files (I like to
6565
$ cd PATH_TO_YOUR/FOLDER
6666

6767
# clone your fork to your local computer
68-
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024
68+
$ git clone https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025
6969

7070
# `cd` (change directory) into this repository
71-
$ cd Interactive-Data-Vis-Spring2024
71+
$ cd Interactive-Data-Vis-Fall2025
7272
```
7373

7474
### 4. Set up your local repository so that it links back to the course repository.
7575

76-
We do this so that you can keep your local branch synced up with the main course repository in the event that we update the material. That way, every week when we add changes, you can `pull` in the new changes from our original class repository.
76+
We do this so that you can keep your local branch synced up with the main course repository when we update the material. With this set up, you can simply `pull` in the new changes from our original class repository.
7777

7878
```sh
7979
#See current remote branches:
8080

8181
$ git remote -v
82-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (fetch)
83-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (push)
82+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025 (fetch)
83+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025 (push)
8484

8585
# notice currently this is only tracking your version of the repository.
8686
```
8787

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

9090
```sh
91-
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git
91+
$ git remote add upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git
9292
```
9393

9494
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:
9595

9696
```sh
9797
$ git remote -v
98-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (fetch)
99-
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Spring2024 (push)
100-
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git (fetch)
101-
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Spring2024.git (push)
98+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025 (fetch)
99+
> origin https://github.com/[YOUR_USERNAME]/Interactive-Data-Vis-Fall2025 (push)
100+
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git (fetch)
101+
> upstream https://github.com/InteractiveDataVis/Interactive-Data-Vis-Fall2025.git (push)
102102

103103
# now notice see that we are tracking both the original and your version of the repository
104104
```

src/lab_0/installations.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)