How to get started with HoloLens Seed Project?
PreviousHow to Get Started with Mixed Reality Development Using Unity?NextHow to change preferences in Unity?
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
git clone --depth=1 https://github.com/Yonet/HoloLensUnitySeedProject.git <your-project-name>// Clone the seed project
git clone --depth=1 https://github.com/Yonet/HoloLensUnitySeedProject.git
-- Remove the history from the repo
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git
git push -u --force origin mastergit remote add upstream https://github.com/Yonet/HoloLensUnitySeedProject.git
git pull upstream mastergit remote -vgit remote remove upstream https://github.com/Yonet/HoloLensUnitySeedProject.git