I am trying to set up a shiny server with the manual of Dean Attali. So far I made the shiny server work. This should be proofed by the fact that the "Welcome to Shiny Server" page shows up when I navigate to the server ip. The problem is that I cannot connect my shiny server to GitHub like in step 8.2 of the manual. I tried it a several times now, but I am getting this error message:
error: src refspec master does not match any.
error: failed to push some refs to 'git@github.com:gituser/shiny-server.git'
This is my code:
sudo apt-get -y install git
cd /srv/shiny-server
git init
echo "# shiny-server" >> README.md
git add --all
git commit -m "first commit"
git config --global user.email "user@user.com"
git config --global user.name "gituser"
git remote add origin git@github.com:gituser/shiny-server.git
git push -u origin master
The email address "user@user.com" and the user name "gituser" are just dummies.
I already deployed the fitting key in the repository settings in GitHub.
Hope that you can help me! Thanks in advance :)
(This is a follow up question to: Connecting GitHub to Shiny Server.)