상세 컨텐츠

본문 제목

Git command 정리

Web

by Yongari 2023. 1. 1. 15:13

본문

 

 

 

 

 

 

 

 

Git repository 가져오기

git clone https://github.com/kimcoding/test.git

 

 

Git 상태 확인

git status

 

Staging area로 더하기 

git add . (현재 폴더 전체)

git add index.js (특정 파일만)

 

Commit하면서 메시지 남기기

git commit -m "index.js 수정"

 

방금 실행한 커밋취소하기

git reset HEAD~1

git reset HEAD^1

git reset HEAD^

 

내 깃헙 origin 레퍼지토리의 main으로 푸쉬하기

git push
git push origin main

 

내 커밋 로그를 확인하기

git log

 

 

git 연결하기 (내 로컬 디렉토리를 git의 관리하에 들어가게 하기)

git init

 

origin 이라는 이름으로 내 remote repository를 등록하기

git remote add origin https://github.com/yongari/test.git

 

리모트 레파지토리의 목록과 주소를 확인해보기

git remote --verbose

git remote -v

 

페어의 레파지토리를 받아서 내 main 레파지토리와  동기화하기

git pull pair main