From 14f39f7a9fc1b62687fdd22d779132e132f0a2b6 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 3 May 2021 21:42:15 +0900 Subject: [PATCH] Exclude /vendor/bin/ when exporting via git MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 이 폴더 내에 있는 심볼릭 링크들은 zip으로 내보내기했다가 압축 해제할 때 정상적으로 처리되지 않을 가능성이 높으므로, zip 파일 생성시 제외합니다. cf. https://xetown.com/questions/1565403 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index f586df60d..ce24fdfbe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,3 +2,4 @@ .github export-ignore .gitignore export-ignore /tests/ export-ignore +/vendor/bin/ export-ignore \ No newline at end of file