我正在使用AWS CodeBuild部署到AWS Elastic Beanstalk的部署。
但是,尝试部署应用程序时出现以下错误:
eb deploy staging --verbose
ERROR: CommandError - An error occurred while handling git command.
Error code: 128 Error: error: Could not read 121c8263f48a23a0fc66af9989cc9ca8bffaae01
fatal: Failed to traverse parents of commit a9c6e3340d50d603fc7d21b3d10edcc5d2ba47ab
答案 0 :(得分:1)
这伤了我几个小时。
问题在于,将AWS Codebuild项目配置为使用以下内容进行浅表克隆:
Git clone depth = 1
由于某些原因,EB CLI需要检查其他提交。要解决此问题,我必须将项目配置为执行完全克隆:
编辑项目->更新源-> Git克隆深度->完整