로메오의 블로그

Git 명령어 정리 본문

Frontend/ETC

Git 명령어 정리

romeoh 2021. 3. 19. 08:05
반응형
## git 설정값 보기
$ git config --list

## git user정보 설정
$ git config --global user.name "myname"
$ git config --global user.email "my@email.com"

## local 저장소 생성
$ git init

## local 저장소 삭제
$ rm -rf .git

## remote 저장소 설정
$ git remote add origin https://github.com/user/myproject.git

## local 저장소 현재상태
$ git status

## branch 확인 / 변경
$ git branch
* master
$ git branch -M main
$ git branch
* main

## remote 저장소 상태 확인
$ git remote -v 
$ git remote rename oldname newname  ## remote 저장소 이름 변경

## 파일을 Stage로 옮김
$ git add .
$ git add ./src/file1.py ./src/file2.py

## 파일을 Stage에서 내림
$ git reset .
$ git reset ./src/file1.py

## commit
$ git commit 
$ git commit -m "커밋 메세지"
$ git commit -a -m "커밋 메세지" ## Staging Area에 들어간 파일만 커밋 

## push
$ git push origin main

## pull
$ git pull origin main

 

 

## 인증하기
$ git remote set-url origin https://myname@github.com/myname/myproject.git

 

unable to access "https://github.com/~.git/" The requested URL returned error: 403

오류가 발생하면 위 명령어로 인증하기 

 

 

 

 

 

반응형

'Frontend > ETC' 카테고리의 다른 글

typescript lint 체크 제외하기  (0) 2021.04.09
async await promise  (0) 2021.04.08
VSCode tab size 변경  (0) 2021.02.13
자주 쓰는 GIT 명령어 정리  (0) 2020.12.17
Cafe24 보안인증서SSL 설정하기  (0) 2020.10.27
Comments