LoginSignup
0
0

More than 3 years have passed since last update.

[自分メモ] Gitリポジトリをzipに圧縮

Last updated at Posted at 2021-04-03

概要

GitHubのリポジトリをメール等でファイルで送る必要がある時などに利用できる、zipにまとめる方法をメモします。

方法

リポジトリを全て圧縮する場合

--formatでファイル型を指定
--outputでファイル名を指定

git archive HEAD --format=zip --output=hoge.zip

特定のディレクトリを圧縮する場合

--prefixでディレクトリの指定

git archive HEAD --prefix=app/ --output=hoge.zip
0
0
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
0
0