Git(3)
-
Local과 Server 소스가 불일치 할때, git add -f
Local에는 파일이 있는데, 서버로 push를 하면, 일부 파일이 누락되는 경우가 있음원인은 정확히는 모르나, Local에서 파일명을 강제로 변경한 이후에 push를 하면 서버에서 해당 파일이 사라지는 것 같음그런 경우, command창에서 강제로 누락된 파일 또는 디렉토리를 add하여 push해야 # 누락된 파일이 push 대상에 보이지 않음git status# 특정 디렉토리를 push 대상에 등록git add -f ./src/main/resources/static# 등록한 파일 또는 디렉토리가 대상에 포함됨을 확인git status# commit 및 pushgit commit -m "누락된 부분 등록"git push
2024.08.12 -
현재 local 디렉토리를 git에 등록
git에서 먼저 프로젝트 생성 https://marah.tistory.com/34 [Github] 현재 디렉토리를 새로운 Git 저장소로 만드는 방법 github Create a New Repository 생성한 레포지토리 Code 복사 디렉토리 선택 git init 명령어 git remote 명령어 5-1. 등록되어 있는 상태 5-2. 새 저장소 등록 5-3. 연결 된 저장소 삭제 5-4. 안전한 경로 등록 git add marah.tistory.com local repository 생성 git init remote 주 등록 # 확인 git remote -v # 등록 # git에서 clone 정보를 복사해서 넣으면 됨 git remote origin {주소} # 확인 git remote -v 원하는 파..
2024.03.16 -
Git 사용법
Token 방식 인증 오른쪽 상단 'Your persional account' 클릭 > Settings > Developer settings > > Personal access tokens > Generate new token Note : 임의 내용 Select scopes : 'repo' 체크 Generate token 생성된 키 복사 git clone https://Note:인증키@github.com/username/repo 참조 : https://velog.io/@jini_eun/Github-2021%EB%85%84-8%EC%9B%94-13%EC%9D%BC%EB%B6%80%ED%84%B0-%ED%86%A0%ED%81%B0-%EC%9D%B8%EC%A6%9D-%EB%A1%9C%EA%B7%B8%EC%9D..
2021.12.05