-
Type:
Task
-
Resolution: Fixed
-
Priority:
Minor - P4
-
Affects Version/s: None
-
Component/s: None
-
None
-
🔵 Done
-
Java Drivers
-
Not Needed
-
None
-
None
-
None
-
None
-
None
-
None
Right now the mongo java has evergreen task
 "fetch-source":   # Executes git clone and applies the submitted patch, if any   - command: git.get_project    params:     directory: "src"
this is an equivalent toÂ
git clone https://github.com/mongodb/mongo-java-driver.gitÂ
In my local it takes around 2 minutes and .git folder is 150MB long
If we doÂ
git clone https://github.com/mongodb/mongo-java-driver.git --depth 1
instead
then it takes a few seconds without a git history
Â
Let's change evergreen to skip git historyÂ
Â