I am pretty new to fabric and trying to setup a deployment in the below fashion:
Main repo --> Local_repo -> Deployment server
I want to
(1)push the build from the main repo to the local repo
(2)Deployment server needs to pull the available code from the local repo
I did the first step sucessfully using put but then I am not able to 2nd step using get operation. I tried using git pull but then I get an error stating its not a git repo and same goes for hg pull as well. Is there a way where we can combine get operation with the host name: for ex:
get ('username@localrepo/local_repo_build_path', deployment_server_local_path)