GIt Bash로 저장소에 소스 올리기
1. Repository 생성 1) New 클릭 2) Repository 만들기 //이름 이메일 설정 git config --global user.name "이름" git config --global user.email "이메일" 1. git init 로컬 저장소 만들기 - 레파지토리에 올리고 싶은 곳에서 git bash 실행 git init 2. git status 상태 확인하기 git status 3. git add * 로컬 저장소에 파일 올리기 git add * * 해당 명령어 실행시 에러 .gitIgnore 파일이 변경할 파일로 존재 시 .giignore은 안 올린다고 했는데 git add로 전체 올린다고 했을 경우 문제가 생김 The following paths are ignored by one..