Skip to content

FiveThing/fivething-website

Repository files navigation

Atl F4 Landing Page

Link

https://fivething.github.io/fivething-website/

Building from Source 🏗️

  1. Fork the repository
  • Then go to your repository and find Alt-f4-website
  1. Clone the repository
git clone https://github.com/{your username}/alt-f4-website.git
  1. Pull in project dependencies
npm install
  1. Host the app locally
npm run start

Sync your fork with the original Git repo

  • If you list the configured remote repository you will only see your fork as origin:
git remote -v
origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
origin  https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
  1. Add a new remote upstream repository
git remote add upstream https://github.com/ALT-FOUR/alt-f4-website.git
  • You can now see both the original repository and the fork
git remote -v
origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch)
origin    https://github.com/YOUR_USERNAME/YOUR_FORK.git (push)
upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (fetch)
upstream  https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git (push)
  1. Sync your fork
  • Be sure your in the root of your project and also in the main branch
git checkout main
Switched to branch 'main'
  • Now you have to fetch the changes from the original repo
git fetch upstream
  • And merge the changes in your main branch
git merge upstream/main

About

FiveThing Portfolio Website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •