Releases: bitrise-steplib/steps-git-clone
5.1.2
5.1.1
Introduced --jobs
flag on submodule update and fetch commands
5.1.0
5.0.1
5.0.0
This version Introduces a new input (fetch_tags
), which can be used to control whether git fetch
calls should fetch all tags or no tags at all.
Set fetch_tags
to "yes"
if you plan to generate a changelog or want to use the repository's tags in further Steps.
If you want to speed up the step run set fetch_tags
to "no"
, this is the default value.
Tag checkout strategy's fetch changed from git "fetch" "--tags"
to git "fetch" "origin" "refs/tags/<TAG>:refs/tags/<TAG>"
so that in case of tag checkout the step only fetches the desired tag.
Migration guide
If your workflow relied on git tags, set fetch_tags
to "yes"
.
4.3.1
Use --jobs
flag to accelerate parallel fetches
4.3.0
Added the option to disable merging Pull Request branches, not enabled by default.
Added a new input: "Allows to validate a temporary merged state." (merge_pr
)
yes
: The default setting. Merges the source branch into the destination branch.no
: Disables merging the source and destination branches. Treats Pull Request events as Push events on the source branch.