Update git configs (#24074)

This commit is contained in:
Cheena Malhotra
2023-08-03 17:26:45 -07:00
committed by GitHub
parent 551e22d9d6
commit f750de94b7
6 changed files with 16 additions and 0 deletions

View File

@@ -41,6 +41,8 @@ steps:
git config user.email "sqltools@service.microsoft.com"
git config user.name "AzureDataStudio"
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
displayName: Prepare tooling
- script: |

View File

@@ -24,6 +24,8 @@ steps:
git config user.email "sqltools@service.microsoft.com"
git config user.name "AzureDataStudio"
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
displayName: Prepare tooling
- script: |

View File

@@ -37,6 +37,8 @@ steps:
git config user.email "sqltools@service.microsoft.com"
git config user.name "AzureDataStudio"
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
displayName: Prepare tooling
- script: |

View File

@@ -23,6 +23,12 @@ steps:
git config user.email "sqltools@service.microsoft.com"
git config user.name "AzureDataStudio"
# Configure post buffer size to allow larger chunks to download faster to avoid network failures when performing `git fetch` or `pull`.
# http.postBuffer: Maximum size in bytes of the buffer used by smart HTTP transports when POSTing data to the remote system.
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-httppostBuffer
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
displayName: Prepare tooling
- script: |

View File

@@ -23,6 +23,8 @@ steps:
git config user.email "sqltools@service.microsoft.com"
git config user.name "AzureDataStudio"
git config --global http.postBuffer 524288000
git config --global https.postBuffer 524288000
displayName: Prepare tooling
- script: |

View File

@@ -37,6 +37,8 @@ steps:
exec { git config user.email "sqltools@service.microsoft.com" }
exec { git config user.name "AzureDataStudio" }
exec { git config --global http.postBuffer 524288000 }
exec { git config --global https.postBuffer 524288000 }
displayName: Prepare tooling
- powershell: |