728x90
# git 초기화 
git init
# 원경저장소 추가
git remote add origin git@github.com:luxury515/pnsn_eis_backend.git

# 파일 추가 
git add src pom.xml .gitignore
# 커밋
git commit -m "first commit"
# push
git push -u origin main

브런치 명 변경

git branch  -m main(기존브런치) master(새 브런치)


내저장소 바로가기 luxury515

'Dev-Tools > git' 카테고리의 다른 글

git install  (0) 2023.04.14
ssh key 쌍 생성  (0) 2023.04.14
git 원격저장소 생성 & local 저장소 추가  (0) 2023.04.13
sourceTree  (0) 2023.04.13
SSL Key Update 로 인한 git pull 실패시!  (0) 2023.04.13
728x90

새로운 저장소 생성

echo "# mybatis-demo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M 'master'
git remote add origin git@github.com:luxury515/mybatis-demo.git
git push -u origin 'master'

로컬저장소 —> 원격저장소에 push

git remote add origin git@github.com:luxury515/mybatis-demo.git
git branch -M 'master'
git push -u origin 'master'


내저장소 바로가기 luxury515

'Dev-Tools > git' 카테고리의 다른 글

git install  (0) 2023.04.14
ssh key 쌍 생성  (0) 2023.04.14
git 현재 로컬프로젝트 원격저장소 push  (0) 2023.04.14
sourceTree  (0) 2023.04.13
SSL Key Update 로 인한 git pull 실패시!  (0) 2023.04.13
728x90


내저장소 바로가기 luxury515

728x90

갑자기 수정해야 될 부분이 생겨서 로컬 branch 생성 한후 원격 branch 에 push(동일하게 생성)하는 작업한다.

git branch newBranch (로컬생성)

git branch -r (기존 원격 브런치 확인 혹시 모를 이름충이슈)

git push origin newBranch (원격복사[생성])

내저장소 바로가기 luxury515

+ Recent posts