7

main.workflow如果我在本地而不是在分支中更改我的文件master,提交并推送更改,我会从push命令中收到此错误:

> git diff
diff --git a/.github/main.workflow b/.github/main.workflow
index 135d8ea..0a13a28 100644
--- a/.github/main.workflow
+++ b/.github/main.workflow
@@ -6,7 +6,7 @@ workflow "Build and Test in PR" {
   ]
 }

-action ".NET Core CLI" {
+action ".NET Core CLI"  {
   uses = "./.github/net-core/"
   args = "test"
 }

> git push
! [remote rejected] my-branch -> my-branch (refusing to allow an integration to create or update .github/main.workflow)
error: failed to push some refs to 'https://github.com/my-user-name/my-repo.git'
4

2 回答 2

6

.yml即使使用工作流文件,仍然会遇到这种情况。事实证明,对我来说,这是因为我使用的是 HTTPS 远程而不是 SSH。

为了在 Github API 中解决这个问题,我只是使用了 SSH 远程而不是 HTTPS。

您可以通过以下方式查看您使用的是 HTTPS 还是 SSH

$ git remote -v
> origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin  https://github.com/USERNAME/REPOSITORY.git (push)

注意是否有一个https://代替git(SSH)。

然后做

git remote set-url origin git@github.com:USERNAME/REPOSITORY.git

然后验证更改

$ git remote -v
# Verify new remote URL
> origin  git@github.com:USERNAME/REPOSITORY.git (fetch)
> origin  git@github.com:USERNAME/REPOSITORY.git (push)

进一步阅读:Github Docs on Switching remote URLs from HTTPS to SSH

于 2019-11-15T21:46:23.127 回答
2

如果您使用的是 GitHub 桌面,则当前有一个错误会在尝试从 GitHub 操作推送提交时导致此错误。作为一种解决方法,您可以使用 Git API,直到此问题的修复程序发布。

于 2019-06-26T15:30:45.347 回答