Mi Lugarcito

GIT - 프로젝트 업로드하기 및 오류해결하기 본문

GIT

GIT - 프로젝트 업로드하기 및 오류해결하기

selene park 2020. 11. 29. 15:54

 + 

 

 

 

 

git config --global user.name "dmstlf292"
git config --global user.email "silviapark292@gmail.com"
git init
git add .
git commit -m "upload files"
git remote add origin https://github.com/dmstlf292/Springboot_Blog.git
git branch -M main
git push -u origin main

 

 

 

 

 

git push -u origin main 코드 입력하면 깃허브 아이디/비밀번호 입력 하라는 창이 뜬다.

 

 

입력하고나서 깃허브 repository 만들었던 홈페이지에서 F5 누르기

 

 

error : remote origin already exists 에러 메시지가 뜰때 해결방법

 

 

Git 오류 충돌 해결법 

 

Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process
may have crashed in this repository earlier:
remove the file manually to continue.

 

이와 같은 에러가 뜬다면 

rm -f .git/index.lock 입력하기

 

 

 

 

 

깃허브 오류 git push -u origin master error: src refspec master does not match any 해결법

 

참고블로그 

blog.naver.com/gnsehfvlr/221769808691

 

[오류 해결]git error : src refspec master does not match any

□ 해당 에러는 local repository에서 remote repository에 push할 파일이 없어서 나는 에러이다.​​□ 따...

blog.naver.com

blog.naver.com/ys_blog/222217875827

 

github push할 때 'error : src refspec master does not match any' 에러 해결 방법

오늘 git 사용 관련해서 갑자기 에러가 계속 생겼다.. RAM 추가 장착했더니 config 파일이다 초기화 된 ...

blog.naver.com

 

 

 

 

 

 local repository에서 Readme.md 파일을 하나 업로드 하고자 하는 폴더에 생성하기

(아래코드 그대로 따라한후, F5누르면 정상적으로 잘 업로드 된게 확인이 된다)

 

 

'GIT' 카테고리의 다른 글

GIT - 협업 프로젝트 시작하기  (0) 2021.01.29
GIT - 깃허브계정의 블로그 글 작성하기  (0) 2021.01.26
GIT - 깃허브계정의 블로그 생성하기  (0) 2021.01.26
GIT - ReadMe 에 이미지 파일 추가하기  (0) 2021.01.26
GIT  (0) 2020.10.20