Git3 git 명령어 2 git 프로그램 그 자체를 최신버전으로 업데이트 git update-git-for-windows git 로그인 정보 없애기 git config --global credential.helper manager git credential-manager delete https://github.com git 설치 직후 사용자 정보 세팅 git config --global user.name "깃허브 계정 ID" git config --global user.email "이메일" 2021. 1. 21. GIT) 원격저장소에 잘못 올린 파일 삭제 git rm [File Name] -> 원격저장소와 로컬저장소에 있는 파일 둘 다 삭제 git rm --cached [File Name] -> 원격저장소에 있는 파일만 삭제 git rm --cached -r [Folder Name/] -> 원격저장소에 있는 폴더와 폴더내부 파일 모두 삭제 2021. 1. 15. Git 명령어 Git 명령어 git 로그인 정보 없애기 git config --global credential.helper manager git credential-manager delete https://github.com git 로컬 리포지터리 생성 git init git 원격 저장소와 연결 git remote add origin 저장소주소 git 원격 저장소와 연결 삭제 git remote remove origin git 커밋할 파일 장바구니에 담기(전부담기) git add . git 커밋할 파일 장바구니에 담기 git add 경로명 git 장바구니에서 빼기 git reset HEAD . git 커밋 git commit -m "커밋 메시지" git 푸시 git push origin master git 상태 git.. 2020. 10. 12. 이전 1 다음