8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

公開リポジトリをフォークして非公開リポジトリにする

Last updated at Posted at 2019-10-20

どうも。
OSSなどで公開されているリポジトリをフォークして、社内で使用したりしたい場合があります。
しかし、安易にgithubのforkボタンを押すと、公開リポジトリとしてフォークされてしまいます。
そこで、公開されているリポジトリを非公開なリポジトリとしてフォークしましょう。

追記: him0 さんより以下のコメントを頂きました。
フォークする場合は必ずライセンスを確認しましょう。

プライベートリポジトリにするにあたってライセンス確認しないとけないと思います。

1. まず、フォークしたい元のリポジトリを、bareモードでクローンします。

$ git clone --bare https://github.com/hoge/hoge

また、この時Git lfsを使用している場合は以下のようにしてGit lfsのfetchもしましょう。

$ cd hoge.git
$ git lfs fetch --all
$ cd ../

2. 次に、githubで新しく空のリポジトリを作ります。ここでプライベートにするのを忘れないでください。

k.png

3. 最後に、先程クローンしたコードを、ミラーモードで自分のリポジトリにプッシュします。

$ cd hoge.git
$ git push --mirror git@github.com:myname/myrepo
$ git lfs push --all git@github.com:myname/myrepo #git lfsを使用している場合のみ
$ cd ../
$ rm -rf hoge.git

これで終わりです。結構簡単ですね。

参考: https://help.github.com/articles/duplicating-a-repository/

8
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?