git bash 터미널로 프로젝트 디렉토리로 이동

…or create a new repository on the command line

#git 초기화
git init
# git config user.name "유저이름"
# git config user.email "유저 이메일"

#브랜치 변경
git branch -m main (메인으로 삼을 브랜치이름)

#원격 저장소 연동
git remote add origin "깃주소"

#원격 브랜치로부터 fetch
git fetch --all

# 원격 저장소로부터 변경 사항을 가져와(즉, fetch) 현재 브랜치에 병합(merge)
# fetch -> merge 를 동시에 수행하는 명령어
# 만약 .gitignore 로 충돌이 일어나면, 현재 프로젝트의 .gitignore 를 삭제한다.
git pull origin main

#로컬 저장
# .gitignore 에 .idea 추가

git add .
git status
git commit -m "first commit"

#원격 업로드
git push -f origin main

명령어 실행후에 sourceTree로 프로젝트 추가