반응형
1. Git 설치(Git bash 같이 설치)
2. Github Repository를 Clone 받을 폴더 하나 생성
3. 해당 폴더로 이동해서 빈 공간에서 마우스 우클릭 후 'Open Git Bash here' 클릭
4. Git Config 설정
git config --global user.name Gildong
git config --global user.email gildong@gmail.com
git config --global core.autocrlf true ==> OS에 따라서 명령어 다름
git config --global push.default current ==> git push할 때 현재 branch로 Push함
git config --list
git config --global --list
5. Git 명령어
git clone은 처음에 한번만 실행하기
git clone https://github.com/gildong/gildong-repository.git
인증 창이 뜨면 인증하기
cd gildong-repository
touch test.txt
변경사항 발생하면 아래 명령어 순서대로 진행
git add .
git commit -m "commit message"
git push
그 외 명령어
git pull
반응형