Bitrise Build Issue Report template
Description of the issue
Update git version at least 2.11.0(it is currently 2.7.4) to improve speed of git LFS
Environment:
when migrating our history to git lfs the clone step went from 1 minute to over 20 minutes
If on Bitrise.io: which stack? If not on Bitrise.io: on what operating system? (Plus any other information you can share)
Ubuntu 16.04 I believe that others will also need
Provisional solution:
Creating a step script that updates to the latest version:
#!/usr/bin/env bash
# fail if any commands fails
set -e
git --version
add-apt-repository ppa:git-core/ppa
apt update
apt install -y git
git --version