honey_pot

[git] .gitignore와 git clone 본문

기타

[git] .gitignore와 git clone

_tera_ 2021. 6. 9. 10:39

git init

git add .

git status -> .gitignore에 무시할 파일 추가 전 상황 확인

git rm --cached -r . -> staging area에 올라간 파일 제거

.gitingnore에 secrets.txt 작성 후

  • # comment
  • *.txt : 확장명이 txt인 모든 파일 

 

 

git clone

 

 

git clone copy한 https 주소

 

'기타' 카테고리의 다른 글

[git] forking 과 pull requests  (0) 2021.06.09
[git] branch와 merge  (0) 2021.06.09
JSON이란?  (0) 2021.06.02
REST API란?  (0) 2021.06.02
서버와 클라이언트, HTTP  (0) 2021.06.02
Comments