본문 바로가기
IT/Git

[Git] push 관련 명령어 정리

by m0o0n 2023. 12. 26.

[git push 과정]

작업공간 설정 > 준비영역 > 로컬저장소 > 원격저장소

 

 

 

 

// git push할 작업 영역에서

git init

 

// git commit을 위한 파일 add
git add .  => 마지막이 .(점) 일경우 전체 파일, 특정 파일만 올리려면 git add [파일명]

                     - add 취소: git restore --staged

 

// add된 상태 확인

git status

 

// add된 파일들 commit하여 push 준비
git commit -m "first commit"

                     - commit 취소: git reset HEAD^

 

// push할 저장소 위치 설정
git remote add origin [url]

                    - 저장소 삭제: git remote remove origin

 

// 저장소 연결 설정 확인
git remote -v

 

// 연결된 저장소에 commit한 파일 push
git push origin master [-f]

                     - f: 강제로 push

 

 

 

 

+ config 설정

// username 설정

git config --global user.name "name"

 

// email 설정

git config --global user.email "email"

 

// config 설정 확인

git config --list

 

 

+ crlf 관련 오류 발생 시

git config --global core.autocrlf true