每次更改时我都必须提交我的 bitbucket-pipelines.yml 吗?
Do i have to commit my bitbucket-pipelines.yml each time make a change?
我想测试我的管道,而不是每次进行更改时都提交。有没有办法防止这种情况,以免在我的开发分支上有一堆不必要的提交?
您可以使用 git commit --amend
将提交推送到上一个提交,这将触发管道到 运行 新更改没有 "bloating" 您的 git 历史记录有很多提交。
这里有一个教程可以帮助你:https://www.atlassian.com/git/tutorials/rewriting-history
我想测试我的管道,而不是每次进行更改时都提交。有没有办法防止这种情况,以免在我的开发分支上有一堆不必要的提交?
您可以使用 git commit --amend
将提交推送到上一个提交,这将触发管道到 运行 新更改没有 "bloating" 您的 git 历史记录有很多提交。
这里有一个教程可以帮助你:https://www.atlassian.com/git/tutorials/rewriting-history