본문 바로가기

GIT

아주 간단하게 보는 커밋 과정

1. git init : 해당 디렉토리를 git을 통해 관리하겠다는 뜻


2. 원격 저장소 설정 : git remote add origin 주소(깃 또는 bitbucket주소)


3. git add *


4. git status : new file 확인 가능


5. git commit -m “first commit” : 커밋 ( 로컬에서 작업한 것을 로컬 리파지토리에 올리는 )


6. git push -u origin —all : (Git 또는 bitbucket) 원격저장소에 올리기


 ! [rejected]        master -> master (non-fast-forward) 에러가 보인다면
git push --force origin master