我是GitHub的新手,总是收到错误..发送" git push"我的外壳: 错误: "主人 - > master(不允许浅更新) 错误:无法将某些引用推送到git@github.com/myuser/myproject.git"
我真的不明白这一点。我想第一次推送到GitHub。在我创建存储库和ssh-key之前。
我正在使用Windows 8.1和GitHub Bash shell(git版本1.9.4 msysgit 2)。
答案 0 :(得分:1)
t5538-push-shallow.sh
表示此错误消息只能在git clone --depth x
之后显示。
再试一次序列:
git clone git@github.com/myuser/myproject.git
cd myproject
// edit a file
git add .
git commit -m "First modif"
git push