27 lines
564 B
Bash
Executable File
27 lines
564 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# git config --global credential.helper "/mnt/c/Program\ Files/Git/mingw64/bin/git-credential-manager.exe"
|
|
|
|
|
|
git config --global core.compression 0
|
|
|
|
git config --global credential.cacheOptions "--timeout 86400"
|
|
git config --global credential.useHttpPath true
|
|
|
|
git config --global http.postBuffer 157286400
|
|
git config --global http.version HTTP/1.1
|
|
git config --global lfs.allowincompletepush true
|
|
git config --global lfs.locksverify true
|
|
|
|
git config --global pack.window 1
|
|
|
|
# git add .
|
|
|
|
git commit -m 'update,'
|
|
|
|
git push
|
|
|
|
echo "done"
|