(Git) 업로드 에러 대처법
·
Git&Linux
Git 명령어1. 기본설정git config --global init.defaultBranch main : 기본 브랜치 main으로 설정git config --global user.name "username" : 깃허브 닉네임 연동git config --global user.email "username@gmail.com" : 깃허브 이메일 주소 연동 2. 에러 대처법Not possible to fast-forward, aborting 에러git pull --rebase : rebase 옵션으로 pull 진행git add (파일명) > git commit -m "메시지" > git rebase --continue : conflict가 발생한 파일을수정 후 rebase로 마무리 한다다시 git push or..
Git 및 리눅스 명령어
·
Git&Linux
Git 명령어1. 저장소 설정git init : 새로운 Git 저장소 초기화.git remote add origin [저장소 URL] : 원격 저장소 연결.git branch -m master main : 브랜치 이름을 "master"에서 "main"으로 변경.2. 파일 업로드git pull (또는 git pull origin main) : 원격 저장소에서 변경 사항을 가져옴.git add . : 워킹 디렉토리에서 변경된 모든 파일 스테이징.git commit -m "메시지" : 변경 사항을 메시지와 함께 커밋.git push (또는 git push origin main) : 변경 사항을 원격 저장소에 푸시.3. 추가 명령어git remote -v : 연결된 원격 저장소 확인.git remote rm o..