Post

TIL - 24/02/04

2024/02/04

  • Unix
    • 사용자에게 광범위한 권한이 주어져 시스템을 조작할 수 있다.
      • 사용자의 시스템 이해도에 기반한 높은 신뢰와 책임을 전제로 한다.
  • Git
    • fork한 저장소에 한 commit이 contribution graph에 나오지 않아 문서를 읽었다.
    • 새 저장소를 만들었다.
1
2
3
4
5
6
  # 저장소 히스토리, 브랜치 정보 만 가져옴
  $ git clone --bare https://github.com/id/forkedRepo.git

  # 저장소의 branch 등 똑같이 push
  $ cd ForkedRepo
  $ git push --mirror https://github.com/id/newRepo.git
This post is licensed under CC BY 4.0 by the author.