I have a bash code that creates an instance of a server in AWS.
The last step of this process is to make the project clone that is in bitbucket.org
.
Normally what I do manually are these steps:
cd $HOME/vhosts
- I position myself inside the folder where I want to clone the repository git clone https://[email protected]/myusr/prjct.git
For the process to become automated I need to skip steps 3 and 4.
I would like to know if you have any way to automate this process without using ssh. There are no options to pass parameters in the git clone function.