Website for the Georgia Tech Visual Analytics Lab, deployed at https://gtvalab.github.io/
Last updated: August 2024
- Start a local server, e.g., using Python (
python -m http.server 8000) - Open browser to http://localhost:8000
To add/modify/remove content:
If you are unfamiliar with forking and submitting pull requests, here is a 4-minute guide to get you started.
- Fork this repository.
- Make your edits on the
masterbranch of the forked repository and commit them. - Submit a Pull Request on the original (non-forked) repository, from your forked repository's
masterbranch to the original repository'smasterbranch, and an admin will merge it.
If your local machine doesn't track the original repo, add it as a remote and fetch it:
git remote add valab-original https://github.com/gtvalab/gtvalab.github.io.git
git fetch valab-original
Confirm your remotes are set up correctly by running git remote -v. You should see something similar to:
origin git@github.com:[YourUserName]/gtvalab.github.io.git (fetch)
origin git@github.com:[YourUserName]/gtvalab.github.io.git (push)
valab-original https://github.com/gtvalab/gtvalab.github.io.git (fetch)
valab-original https://github.com/gtvalab/gtvalab.github.io.git (push)
After your Pull Request is merged, sync your fork back to the lab repo.
Warning: step 2 discards any local commits on
masterthat aren't in the lab repo.
git fetch valab-originalgit reset --hard valab-original/mastergit push --force-with-lease origin master
- endert [at] gatech [dot] edu