I am trying to deploy an Angular PWA to gh pages and receive this error on deploy: git-upload-pack '.': git-upload-pack: command not found fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
My scripts are:
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start-pwa": "ng build --prod && http-server -p 8080 -c-1 dist/billFold-client",
"predeploy": "ng build --prod --base-href=/billFold-client/",
"deploy": "npx gh-pages -d dist/billFold-client"
},
"private": true,
"homepage": "https://gcy2312.github.io/billFold",
Has anyone been able to fix this issue? I've tried changing my scripts, using angular-cli-ghpages instead.... always the same error....