Skip to content
Hyunseup Jo edited this page Jun 10, 2024 · 6 revisions

Git 명령어 정리

🔹 Git 명령어 정리

Fork로 협업하는 법

🔹 Fork로 협업하는 법

.gitignore

  1. 특정파일 test.txt 제외하기
test.txt
  1. 현재 경로에 있는 test.txt만 제외하기
/test.txt
  1. 특정 폴더안의 파일 모두 제외하기
.vscode/
  1. 특정 경로의 특정 파일 제외하기
folder/test.txt
  1. 특정 확장자 파일 모두 제외하기
*.txt
  1. 예외 만들기
!test.txt

Git, Pull/Push할 때 id password 묻지 않게 하기

🔹 Git, Pull/Push할 때 id password 묻지 않게 하기

Git LFS (Large File System)

🔹 Git LFS

Clone this wiki locally