Creating GitHub Project
(~5 minutes)
Remove Cached repo for UI
cd ui
git rm -r --cached . -f
rm -rf .git
cd ../Initializing the local repo
git init .
Add Files to Local Repo (we're also renaming master to main)
git add .
git commit -m "initial commit"
git branch -m master main # this step is no longer needed [2022-10-18]Add Remote
Push to GitHub
Last updated
Was this helpful?