1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:02:08 +02:00
tldr/pages/common/git-stripspace.md
Lena d427f333b2
pages/*: add backticks around I/O streams (#10436)
* as suggested in #10428
* standard input  => `stdin`
* standard output => `stdout`
* standard error  => `stderr`

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-08-09 10:59:02 +05:30

492 B

git stripspace

Read text (e.g. commit messages, notes, tags, and branch descriptions) from stdin and clean it into the manner used by Git. More information: https://git-scm.com/docs/git-stripspace.

  • Trim whitespace from a file:

cat {{path/to/file}} | git stripspace

  • Trim whitespace and Git comments from a file:

cat {{path/to/file}} | git stripspace --strip-comments

  • Convert all lines in a file into Git comments:

git stripspace --comment-lines < {{path/to/file}}