Connecting GitHub to Shiny Server

三世轮回 提交于 2019-12-24 07:59:11

问题


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 'origin'

This is my code:

sudo apt-get -y install git
cd /srv/shiny-server
git init
echo "# shiny-server" >> README.md
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

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 :)


回答1:


There is a step missing here:

git init
echo "# shiny-server" >> README.md
git commit -m "first commit"

The missing step is a git add, to add the README.md to Git.

Without the git add step, git commit did nothing. As such, the repository doesn't have any commits, and therefore there's nothing to push, resulting in the error that you observed.

This way it will work:

git init
echo "# shiny-server" >> README.md
git add --all
git commit -m "first commit"


来源:https://stackoverflow.com/questions/40313235/connecting-github-to-shiny-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!