Git | Github (3) 썸네일형 리스트형 [Git] could not delete references: cannot lock ref ... Update failed could not delete references: cannot lock ref 'your_remote_path': Unable to create 'your_local_path': File exists.실제 에러 내용could not delete references: cannot lock ref 'refs/remotes/origin/feature/-20231016': Unable to create 'C:/Users/eugenecha/Documents//.git/refs/remotes/origin/feature/-20231016.lock': File exists. 과거일 기준 local master에서 작업한 나의 변경 상태와, 미래일 기준 새로운 커밋이 추가된 remote mas.. [Git | SourceTree] remote: Repository not found. github Developer settings에서 생성할 수 있는 personal token의 유효 기간을 이전에 90일로 설정해두어서, 90일이 지난 금일 위와 같은 오류가 발생하였습니다. 새로운 git token 생성 > 자격 증명 관리자에서 github 계정 편집 > SourceTree에서 git 저장소 재연결 [Git] 로컬 프로젝트를 github에 push하기 // git 초기화: 현재 디렉토리에서 git을 정의 git init // 프로젝트 파일 전부를 commit에 포함 git add . // 현재 대상화된 branch와 committed된 파일 목록 보기 git status // commit에 "commit" 메시지 남기기 git commit -m "commit" // commit을 시도하는 사용자 정보 정의 git config --global user.email "youremail@email.com" git config --global user.name "yourname" // 사용자의 repository 주소 정의 git remote add origin https://github.com/yourname/repositoryname.git // commi.. 이전 1 다음