Although I have eb init
if I try to aws.push
I get this error:
git: 'aws.push' is not a git command. See 'git --help'.
How to start using aws.push
and what's the difference between aws.push
and eb deploy
?
Although I have eb init
if I try to aws.push
I get this error:
git: 'aws.push' is not a git command. See 'git --help'.
How to start using aws.push
and what's the difference between aws.push
and eb deploy
?
aws.push
was seen in older version of Eb CLI:
eb push
andgit aws.push
: EB CLI does not include the commandseb push
orgit aws.push
. The commands have been replaced with the commandeb deploy
.
So, as mentioned in this question, use eb deploy
.