Git clone fails in Circle 2.0

I am running into the same issue. The workaround suggestion worked for me.

- run: 
          command: |
            mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
            git clone -b develop $CIRCLE_REPOSITORY_URL 
            cd $CIRCLE_PROJECT_REPONAME
1 Like