У меня есть приложение ruby в aws, которое создаст новое репо в github, оно отлично работает с heroku.Но в aws журнал говорит:
Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: empty ident name (for <webapp@ip-172-31-28-185.us-east-2.compute.internal>) not allowed
Puma.log
eb.activity.log
Почему это говорит "/ home /webapp: нет такого файла или каталога "
" git_initializer.rb "
system("echo intializing git")
`git config --global user.name soumjo&& git config --global user.email soumjo@gmail.com`
`cd && touch .netrc`
`chmod 600 .netrc`
File.write(".netrc",
<<-HEREDOC
machine github.com
login soumjo
password #{ENV['github_pwd']}
HEREDOC
)