Part 2. Git을 활용한 버전관리

Sohyun·2021년 7월 18일
0

21Summer

목록 보기
10/18

git : 컴퓨터 파일의 변경사항을 추적하고 여러 사용자들 간에 해당 파일 작업을 조율하기 위한 대표적인 버전 관리 시스템(VCS)
→ 다운로드 gitbash
→ github 회원가입

git push

git init
git config --global core.autocrlf true (window, input=MaciOS)
git config --global user.name 's0hyuneee'
git config --global user.email 's09glee@gmail.com'
git config --global --list

git status
git add.
git commit -m '(msg)'
git log (내용 확인)
git remote add origin (주소 복붙)
git push origin master

profile
Majoring in Computer Science

0개의 댓글