Mi Lugarcito
GIT - 프로젝트 업로드하기 및 오류해결하기 본문
+
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
blog.naver.com/ys_blog/222217875827
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 |