wasup
git) note - init pull and push / .gitignore / failed to push some refs to ~ 해결방법 본문
IT etc/Git
git) note - init pull and push / .gitignore / failed to push some refs to ~ 해결방법
wasupup 2022. 8. 29. 15:36반응형
git 저장소 생성 후 원하는 파일 위치에서
git init
git remote add origin [http://github.com/userName/repositorysName.git
git remote #확인
git pull origin main
gitignore 파일 만들기
vi .gitignore
내용 작성
저장 :wq
git commit
git add -A
warning : LF will be replaced by CRLF in .gitignore.
the file will have its original line endings in your working directory
.gitignore에서 LF는 CRLF로 대체됩니다.
파일은 작업 디렉토리에서 원래 줄 끝을 갖습니다.
->
구글링해서 여러방법을 찾아봤으나
status 찍어봐도 아무런 변동사항 없고
pull -> marge -> push 를 반복해도 같은 오류가 나서
-f 옵션을 사용
git push -f origin
git branch -m main
git remote
git commit -m "git commit"
git push -u origin main
반응형
'IT etc > Git' 카테고리의 다른 글
git ) note - 오류 the current branch master has no upstream branch. / src refspec master does not match any / please commit your changes or stash them before you merge (0) | 2022.08.29 |
---|---|
Git) 호스팅 사용하기 (0) | 2021.07.21 |
Git) 에러 'git push --set-upstream main master' (0) | 2021.07.21 |
Git) 에러 'index.lock' (0) | 2021.07.21 |
Git) merge 충돌!! (0) | 2021.07.11 |
Comments