git bash에서 환경설정 하기
step1: 유저 이름 설정하기
git config --global user.name "Doeun Lee"
step2: 유저 이메일 설정하기
git config --global user.email "ehdms00@naver.com"
=> githb 가입시 사용한 이메일 작성!
step3: 정보 확인하기
git config --list
=> 결과목록에서 user.name= Doeun Lee, user.email=ehdms00@naver.com 확인 가능.
초기화
git init
추가할 파일 더하기
git add .
=> .(점)은 모든 파일이라는 뜻, 선택적으로 올리고 싶으면 add 뒤에 파일 이름을 붙여주면 됨 (예. git add index.html)
git status
git commit -m "first commit"
=> -m 은 메세지의 준말로 뒤에 ""안에 주고싶은 히스토리 이름을 주면 됨.git remote add origin https://github.com/doeunllee/hello-world.git
git remote -v
=> 내가 연결한 주소값이 잘 뜨면 성공! git push origin master
=> master 자리에는 branch 이름이 들어가면 됨. branch 이름이 main이라고 하면 git push origin main 이라고 써야함.git add .
git commit -m "second commit"
=> 예를 들어 그 전까지는 "최종"이었다면 현재는 "진짜 최종"이라는 뜻.git push origin master
• 내 컴퓨터에 소스코드를 업데이트하고 싶다면? 이 세개의 스텝만 계속 반복하면 됨!
git clone 주소 폴더이름
• 주소는 깃허브에서 들고 와야함.git checkout -b 브렌치이름
내 브렌치에 소스코드 업데이트 하기
git add.
git commit -m "first commit"
git push origin 브렌치이름
git pull origin master
git checkout 브렌치이름