Elastic Beanstalk, Git and AWS Tools: How to clone repository to another workstation

Viewed 3448

I just discovered the amazing possibilities of AWS. So here is what I did yesterday:

- I have created an EB stack (PHP)
- Created a git repository on my workstation 
- Downloaded AWS tools for windows, 
- Did eb.init (the AWS config stuff)
- Wrote some code
- Finally git committed and aws.push-ed it to my EB stack

Everything ok. But now today I am working at another workstation and want to continue my project. How can i do a git clone now? I want to download all the files to this workstation, commit some stuff and finally aws.push it to my EB stack?

First of all I downloaded AWS tools to this workstation, created a new folder in which I did git init but what is the url for git clone? And how do i get the EB settings? I tried to do a eb init but that leads me to the generation of a new stack and doesn't provide any option to download my existing files.

I am using windows (powershell, putty, ...).

2 Answers
Related