수리통계 분석 코딩 실습

[git] 대용량 파일 업로드 본문

기타/git

[git] 대용량 파일 업로드

얼려먹는 요구르트 2024. 2. 27. 17:06

git init # 처음 한번만 사용
git pull

# 대용량 파일 업로드 
git lfs install
git lfs track "*.psd"
git add .gitattributes
git add .
git commit -m "add db conti result"

git push origin master

git config pack.threads 1

git push origin master