Git(6)
-
SVN 백업 및 복구
전체 데이터를 백업받고, 개별 프로젝트별로 디렉토리 복사해서 local에서 SVN 복구 가능함
2024.12.29 -
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 -
gitlab-runner 명령어
다중 라인 명령어 적용 https://jsramblings.com/using-multiline-strings-in-gitlab-yml-file/ Using multiline strings in GitLab YML file Sometimes your script is too long and it doesn't fit on one line: script: - docker run --name build-container --tag gitlab:demo --workdir /project --build-arg SOME_VAR=123 custom-image .It would be nice to be able to split this on multiple lines, just like jsramblings.com d..
2022.03.13 -
gitlab 에러
This job is stuck because you don't have any active runners online or available with any of these tags assigned to them 실행할 runner가 매핑이 안된 경우이며, 아래 2가지 체크 필요 .gitlab_ci.yml에 실행할 runner 기술 : tags tags: - ssh # gitlab project에 .gitlab_ci.yml에서 기술한 runner가 셋팅이 되어 있어야 함 gitlab project > Settings > CI/CD > Runners Available specific runners에 사용할 runner가 셋팅되어 있어야 함
2022.02.01 -
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