github 썸네일형 리스트형 [Git] 레포지토리 옮기기 예제에 사용된 git 저장소는 github입니다. (bitbucket,gitlab 등에서도 사용가능합니다.) /* 옮기고자 하는 레포지토리를 로컬에 clone */ $ git clone --mirror https://github.com/{user}/{source-repository-name}.git /* clone받은 레포지토리로 이동 */ $ cd {source-repository-name}.git /* remote 레포지토리 url을 변경 */ git remote set-url --push origin https://github.com/{user}/{target-repository-name}.git /* 신규 레포지토리로 clone 받은 소스들을 push */ git push --mirror 더보기 [GitHub] 히스토리 삭제하기(초기화하기) - 실행 환경 : Linux Ubuntu 14.04 (Windows 환경인 경우 Git Bash를 이용하세요.) - 참고페이지 : http://stackoverflow.com/questions/9683279/make-the-current-commit-the-only-initial-commit-in-a-git-repository 1) 기존의 모든 히스토리 삭제rm -rf .git 2) 현재 소스들로 git repository 다시 생성하기git initgit add .git commit -m "Initial commit" 3) GitHub에 push하기git remote add origin git push -u --force origin master 더보기 이전 1 다음