SYNOPSIS

git stripspace [-s | --strip-comments] git stripspace [-c | --comment-lines]

DESCRIPTION

コミットメッセージ・メモ・タグ・ブランチの説明などのテキストを標準の入力から読み取り、Gitで使用されている作法でクリーンアップします。

引数なしの場合、この作法は以下のようになります:

  • 全ての行の末尾の空白(whitespace)を取り除く

  • 複数の連続する空行を1つの空行に折りたたむ

  • 入力の最初と最後から空行を削除

  • 必要に応じて、欠落している \n を最後の行に追加します。

入力がすべて空白文字(whitespace characters)で構成されている場合、出力は生成されません。

NOTE: This is intended for cleaning metadata. Prefer the --whitespace=fix mode of git-apply(1) for correcting whitespace of patches or files in the repository.

OPTIONS

-s
--strip-comments

Skip and remove all lines starting with a comment character (default #).

-c
--comment-lines

Prepend the comment character and a blank space to each line. Lines will automatically be terminated with a newline. On empty lines, only the comment character will be prepended.

EXAMPLES

以下のようなノイズの多い入力があるとします。 $ は行の終わりを示しています:

|A brief introduction   $
|   $
|$
|A new paragraph$
|# with a commented-out line    $
|explaining lots of stuff.$
|$
|# An old paragraph, also commented-out. $
|      $
|The end.$
|  $

git stripspace を引数無しで実行すると以下のようになります:

|A brief introduction$
|$
|A new paragraph$
|# with a commented-out line$
|explaining lots of stuff.$
|$
|# An old paragraph, also commented-out.$
|$
|The end.$

git stripspace --strip-comments を使うと以下のようになります:

|A brief introduction$
|$
|A new paragraph$
|explaining lots of stuff.$
|$
|The end.$

GIT

Part of the git(1) suite