Hello, I'm experimenting with Git... I've found Beanstalkapp suits my needs.
I've created individual repositories for EACH client on Beanstalk and then pushed all the files from a machine at work.
I've created repositories for each client and my Beanstalk account now looks like this:
Client One (repository)<br>
--a load of files and folders<br>
Client Two (repository)<br>
--a load of files and folders<br>
Client Three (repository)<br>
--a load of files and folders
...etc
This mirrors the folder structure I established the commit from on another machine
**GIT(root)**
Client One (repository)
--a load of files and folders
Client Two (repository)
--a load of files and folders
Client Three (repository)
--a load of files and folders
I now need to replicate this on a new machine!
How do I 'pull' the files down (git) and mirror the structure I have on the other machine?? I guess I'm looking for synchronization here?
Thanks in advance for any advice!
M