Does circleci checkout pull the latest code from master or the code for the specific commit
问题 Hello stackoverflow/circleci gods. I have been using circleCI for a while now and I have a question about the 'checkout' step which I will do my best to explain. This is a snippet from my circleCI config file (I have a job 'a-job' whose first step is checkout): a-job: docker: - image: docker-image-here steps: - checkout ... My question is, does the circleci step 'checkout' pull the latest code from master or the code for the specific commit. i.e. does checkout simply git clone master:latest