티스토리 뷰
1.. gitignore:
▼ git - gitignore 참고
https://git-scm.com/docs/gitignore
▼ ignore 할 파일들을 정리해서 알려주는 사이트
https://www.toptal.com/developers/gitignore
실습
현재 디렉터리에 hello1.txt, test 1.txt 파일 존재
test2.txt 파일 생성 후
commit 실행결과 Untracked files: test 1.txt, test2.txt
nano편집기로. gitignore 파일을 생성하고 test 1.txt 작성
commit결과 test 1.txt는 Untracked files에서 사라졌다.
nano편집기로. gitignore파일에 test2.txt를 추가로 작성
현재 디렉터리에 add하지 않은 test 1.txt, test2.txt,. gitignore 파일이 있다.
. gitignore파일을 add 하고 commit해도 test 1.txt, test2.txt 파일은 무시되고 문제없이 "Ignore"버전이 만들어진다.
2. branch
▼ git - branch 참고
https://git-scm.com/docs/git-branch
▼ git branch 개념
https://blog.naver.com/dktmrorl/222344170901
3. tag
4. backup 언젠가 정보를 유실
▼ git - backup 참고
https://blog.naver.com/codinginpain/222223144446
'
'Git' 카테고리의 다른 글
GIT CLI - Branch & Conflict 3. 브랜치의 기본사용법 (0) | 2021.05.24 |
---|---|
GIT CLI - Branch & Conflict 1. 수업소개 2.실습환경 (0) | 2021.05.24 |
GIT2-CLI 버전관리 - 10. 되돌리기 - git revert (0) | 2021.05.24 |
GIT2-CLI 버전관리 - 9. 삭제 - git reset (0) | 2021.05.24 |
GIT2-CLI 버전관리 - 8. 보충수업 (0) | 2021.05.24 |