将GitHub连接到Shiny Server(跟进)

时间:2016-10-28 22:40:19

标签: linux git github shiny-server

我正在尝试使用manual of Dean Attali设置一个闪亮的服务器。到目前为止,我使闪亮的服务器工作。这应该通过以下事实来证明:当我导航到服务器ip时,“欢迎使用Shiny Server”页面显示出来。问题是我无法像手册的步骤8.2那样将我的闪亮服务器连接到GitHub。我现在尝试了几次,但是收到此错误消息:

  

错误:src refspec master与any匹配。

     

错误:未能将某些参考文献推送到'git@github.com:gituser / shiny-server.git'

这是我的代码:

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

电子邮件地址“user@user.com”和用户名“gituser”只是假人。

我已经在GitHub的存储库设置中部署了拟合密钥。

希望你能帮助我!在此先感谢:)

(这是一个跟进问题:Connecting GitHub to Shiny Server。)

0 个答案:

没有答案