하루의 쉼터

[Git] 이미 있는 디렉토리 신규 브런치 업로드 본문

프로그래밍/Git

[Git] 이미 있는 디렉토리 신규 브런치 업로드

Changun An 2023. 12. 8. 15:11
반응형


1. git init

2. .gitignore 작성 ( 선택 )

3. git add . (커밋할 내용 add 하면 됨 .은 전부 업로드)

4. git commit -m "commit message"

5. git remote add origin [git url]

6. git brach [branch name] 

* 임시 브런치를 만들던지, 원격 저장소에 있는 브런치를 통하여 업로드 진행(선택)

7. git checkout [branch name]

8. git pull origin [원격 branch name] --allow-unrelated-histories

* conflict 조심

9. git push -u origin [branch name]

* 없는 경우

git push --set-upstream origin [branch_name]

반응형
Comments