Forum Discussion
Daniel Westerdale
Aug 03, 2018Iron Contributor
Upload a downloaded repo and cannot get past No refs in common and none specified; doing nothing.
Hi I want to utilise a Beau Cameron's: https://github.com/bcameron1231/PnP-Starter-Kit-Non-FR for a client so I won't be able to simply clone it for obvious reasons. However, I am happy to share ...
- Aug 03, 2018
Actually I figured it. Hope someone else finds this useful
Ensured my untracked files are tracked
λ git add -A .
Performed a local commit
λ git commit -m "first non-FR version" -a
Now push the files to my remote repo . Notice the missing --All parameter as this caused an error:
fatal: --all can't be combined with refspecs. Could somebody please explain.
λ git push -u origin master
Daniel Westerdale
Aug 03, 2018Iron Contributor
Actually I figured it. Hope someone else finds this useful
Ensured my untracked files are tracked
λ git add -A .
Performed a local commit
λ git commit -m "first non-FR version" -a
Now push the files to my remote repo . Notice the missing --All parameter as this caused an error:
fatal: --all can't be combined with refspecs. Could somebody please explain.
λ git push -u origin master
- btkatchFeb 23, 2021Copper ContributorThank you for posting the reply.