在VPS上新建了一个Git仓库,本地开发测试完了以后直接通过Git Push上去,不用SCP传了
但是却提示remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
查了一下,这是Git新建了仓库以后默认不允许push操作
可以使用
git config receive.denyCurrentBranch=ignore
即可解决
在VPS上新建了一个Git仓库,本地开发测试完了以后直接通过Git Push上去,不用SCP传了
但是却提示remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
查了一下,这是Git新建了仓库以后默认不允许push操作
可以使用
git config receive.denyCurrentBranch=ignore
即可解决