Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 1 | git-stripspace(1) |
| 2 | ================= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Fredrik Kuivinen | 7bd7f28 | 2006-03-09 17:24:50 +0100 | [diff] [blame] | 6 | git-stripspace - Filter out empty lines |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Johannes Schindelin | f653aee | 2007-07-23 12:58:27 +0100 | [diff] [blame] | 11 | 'git-stripspace' [-s | --strip-comments] < <stream> |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
A Large Angry SCM | f58b743 | 2005-08-28 17:16:01 -0400 | [diff] [blame] | 15 | Remove multiple empty lines, and empty lines at beginning and end. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 16 | |
| 17 | OPTIONS |
| 18 | ------- |
Jonas Fonseca | 7b55eee | 2007-11-02 10:10:11 +0100 | [diff] [blame] | 19 | -s|--strip-comments:: |
Johannes Schindelin | f653aee | 2007-07-23 12:58:27 +0100 | [diff] [blame] | 20 | In addition to empty lines, also strip lines starting with '#'. |
| 21 | |
A Large Angry SCM | f58b743 | 2005-08-28 17:16:01 -0400 | [diff] [blame] | 22 | <stream>:: |
| 23 | Byte stream to act on. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 24 | |
| 25 | Author |
| 26 | ------ |
| 27 | Written by Linus Torvalds <torvalds@osdl.org> |
| 28 | |
| 29 | Documentation |
| 30 | -------------- |
| 31 | Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 32 | |
| 33 | GIT |
| 34 | --- |
Sergey Vlasov | a7154e9 | 2005-09-19 14:10:51 +0400 | [diff] [blame] | 35 | Part of the gitlink:git[7] suite |