GIT 명령어

» dev

현재 GIT 사용자 확인

git config --global user.name #사용자명
git config --global user.email #사용자이메일
git config -l #사용자 정보 확인

git config --global user.name = 가웨인 #사용자명 설정

GIT 초기화

git init

repository 연결

git remote add origin [git repository 주소]

repository remote 확인

git remote -v

메인 브랜치 이름 변경

git branch -M main

브랜치 확인

git branch # 로컬에 대한 브랜치 확인
git branch -a # 리모트 포함 모든 브랜치 확인

현재 상태, 로컬에서 수정 및 새로 추가된 파일들을 확인할 수 있다

git status

stage 추가, commit 하려는 파일을 선택한다.

git add . #모든 파일 stage 추가
git add {파일명} # 특정 파일만 stage 추가

커밋 생성

git commit
git commit -m "메세지 입력"

변경사항 리모트서버 업로드

git push origin main