Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use
--deepen
in place of --depth
during fetches in rebasing
Previously we used `--depth` to ensure that enough commits were included in the repository to effectively perform create changlogs. However, using `--depth` sets the depth of the repository, and if the repository previously was unshallow, it because a shallow repository. Instead by using deepen, the depth will be increased by the provided value. This will ensure that the enough commits are included and will be a noop if an unshallow repo is deepened further.
- Loading branch information