728x90
winget install --id Git.Git -e --source winget


내저장소 바로가기 luxury515

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

git 에러관련  (0) 2023.04.16
SourceTree 키 체인 확인창뜰때  (0) 2023.04.14
ssh key 쌍 생성  (0) 2023.04.14
git 현재 로컬프로젝트 원격저장소 push  (0) 2023.04.14
git 원격저장소 생성 & local 저장소 추가  (0) 2023.04.13
728x90
ssh-keygen -t rsa -b 4096 -C "bcchae@lendingmachine.co.kr"


내저장소 바로가기 luxury515

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

SourceTree 키 체인 확인창뜰때  (0) 2023.04.14
git install  (0) 2023.04.14
git 현재 로컬프로젝트 원격저장소 push  (0) 2023.04.14
git 원격저장소 생성 & local 저장소 추가  (0) 2023.04.13
sourceTree  (0) 2023.04.13
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

Error

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

내저장소 바로가기 luxury515

+ Recent posts