1

Is there a way to get opsworks to deploy by doing git pull instead of git clone every time?

Shrinath
  • 297
  • 1
  • 3
  • 16

1 Answers1

2

Putting this in custom JSON did the job -

{
  "deploy": {
     "my_app_name": {
        "delete_cached_copy": false
     }
   }    
}
Shrinath
  • 297
  • 1
  • 3
  • 16