Git&Github

· Git&Github
git commit 시 오류 발생 아무리 git add를 통해 특정 폴더 및 파일을 추적하려고 해도, modified contet 오류를 발생시키며 git이 이를 수행하지 못 하고있다. 원인 git repository로 등록한 디렉토리의 하위 디렉토리에 git이 또 등록되어 있는 경우 위와 같은 현상이 발생했다. 해결방안 하위 디렉토리의 git을 삭제하고 캐시까지 지워준다. 그리고 기존의 루트 디렉토리에서 다시 git add, git commit을 실행하면 정상적으로 작동한다. 1. 하위 디렉토리 git 삭제 $ cd 하위디렉토리 $ rm -rf '.git' 2. 하위 디렉토리 git 관련 캐시 삭제 $ cd 루트디렉토리 $ git rm -rf --cached 하위디렉토리 3. gt add // git ..
· Git&Github
0. git 설치 https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.41.0) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 11 days ago, on 2023-06-01. Other Git for Windows downloads Standalone Installer 32-bit Git for Win git-scm.com 자신 컴퓨터 환경에 맞는 git 버전을 설치한다. 1. git init git bash를 실행시키고 프로젝트..
째로스
'Git&Github' 카테고리의 글 목록