목록git (11)
jineecode
.git을 삭제했다가 다시 githube 와 연결하려고 했을 때 생기는 오류. git push origin +master git push --set-upstream origin master 이 방법으로 해결이 안 되면 www.zehye.kr/project/2020/07/20/Project_git_conflict_solution/ 다이어리 앱 만들기 - 깃 에러 해결하기(set upstream, non fast-forward) · 지혜의 개발공부로그 다이어리 앱 만들기 - 깃 에러 해결하기(set upstream, non fast-forward) 20 Jul 2020 | PROJECT 개인 프로젝트를 정리한 것입니다. 잘못된 내용이 있다면 편하게 댓글 남겨주세요! 실수로 .git 파일을 삭제하게 www.z..
1. ctrl + ` = 터미널 열어주기 2. git init 입력하기 (git 폴더를 만들어줌_ 숨김파일) 3. git config --global user.name "내 이름" git config --global user.email "내 메일주소" 4. git status 로 상태 확인하기 5. git add 명령어들 ifuwanna.tistory.com/193 Git 저장소 생성 및 커밋 ( init / add / commit ) 개요 깃 (Git) 의 장점중 하나는 대부분의 명령을 로컬에서 실행한다는 점입니다. 원격 저장소(remote Repository) 의 정보가 필요한때만 (pull push 등) 네트워크가 필요하고 그 외에는 오프라인 환경 ifuwanna.tistory.com 6. git ..
1. git status 결과 On branch main Your branch is up to date with 'origin/main'. Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) modified: index.html no changes added to commit (use "git add" and/or "git commit -a") 변경된 파일 modified: index.html 2. git add index.html 3. git commit -m "plus html" 결과 PS ..