Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

블로그 언저리인 무언가

La Piscine을 위한 Git 기초문법 본문

Programming/42 Seoul

La Piscine을 위한 Git 기초문법

he1fire 2020. 10. 12. 15:27
728x90

commit을 할때 기록되는 사용자명과 이메일 설정

git config --global user.name "user name" // 유저 설정
git config --global user.email "user@email" // 이메일 설정
git config --list // 유저명, 이메일명 확인

컴퓨터에 로컬 저장소 생성

mkdir [working directory adress] // []경로에 작업폴더생성

로컬 저장소로 이동

cd [working directory adress] // 작업폴더로 이동

원격 저장소 복사

git clone [Github repository adress] [directory name] // 원격저장소를 이름을 정해 복사

로컬 저장소에 변경내용 추가하기

git add [folder/file] // 파일 선택하여 추가
git add . // 현재위치의 모든파일 선택

로컬 저장소에 변경내용 확정하기

git commit -m "explain for code" // 커밋하면서 메시지 추가

원격 저장소로 변경된 로컬 저장소 내용 발행하기

git push origin master // origin저장소에 master브랜치에 추가 (clone시 origin저장소 자동 생성)

로컬 저장소를 원격 저장소 파일로 갱신하기

 git pull // 원격저장소의 파일들을 다운로드

git 상태 확인

git status

git 기록확인

git log 
git log -[n] // n자리에 숫자입력, 최근 n개의 커밋 확인
728x90

'Programming > 42 Seoul' 카테고리의 다른 글

42 Seoul La Piscine 합격기념 Q&A  (0) 2020.12.20
42 Seoul La Piscine 4주차 후기  (0) 2020.11.07
42 Seoul La Piscine 3주차 후기  (0) 2020.11.02
42 Seoul La Piscine 2주차 후기  (1) 2020.10.26
42 Seoul La Piscine 1주차 후기  (0) 2020.10.19
Comments