git 사용법
Written on 2023-06-28
git Remote Repository 설정방법
#server에서 remote repository로 사용할 directory 생성
#mkdir <repository name>
$ mkdir project.git
$ cd project.git
$ git init --bare --shared #git remote저장소로 사용할 디렉토리로 이동하여 저장소를 초기화 한다.
git Local Repository 생성 및 초기화 방법
$ mkdir repository.git
$ cd repository.git # repository로 사용할 디렉토리로 이동
$ git init # repository 초기화
Local Repository에 Remote Repository 추가하기
# git remote add [remote repository name | default: origin] [remote URL]
$ git remote add origin https://github.com/dlfrb2000/Note.git
Romote Repository URL 변경
# git remote set-url <remote repository name> <remote repository url>
$ git remote set-url origin https://github.com/user/repo.git
git commit 내역까지 push 하는방법
$ git clone --mirror https://gitlab.com/dlfrb2002/codefactory.git # 과거 reposity 복사
$ cd codefactory.git # 저장소로 이동
$ git remote set-url --push origin https://github.com/likeel/secret.git # 이동시킬 저장소 url 설정
$ git push --mirror #이동시킬 저장소로 Push