1. 브랜치의 기본사용법1 git branch: 브랜치 정보를 보여준다. 현재 브랜치로는 master가 있고, master에 속해있다. git branch [BranchName]: BranchName이라는 브랜치를 만든다. 브랜치 apple 생성 현재 브랜치로는 master, apple이 있고, master에 속해있다. ※ *이 가르키는 브랜치에 속함. 즉, HEAD가 가리키는 브랜치 브랜치 google, ms 생성 nano편집기로 work.txt에 master contetn 4를 추가 작성 후 버전 생성 현재 브랜치는 master에 속해있다. master에 속한 work.txt 내용 git checkout [BranchName]: HEAD가 BranchName을 가리키도록 전환 브랜치 apple에 속하..
1.. gitignore: ▼ git - gitignore 참고 https://git-scm.com/docs/gitignore Git - gitignore Documentation The optional configuration variable core.excludesFile indicates a path to a file containing patterns of file names to exclude, similar to $GIT_DIR/info/exclude. Patterns in the exclude file are used in addition to those in $GIT_DIR/info/exclude. git-scm.com ▼ ignore 할 파일들을 정리해서 알려주는 사이트 https://w..