mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
* Upgrade codespell to v2.4.0
It is a lastet verison, and is needed so that I can use the inline
ignore support in a future commit.
After updating tests/pyproject.toml I ran the following commands:
```
cd tests
poetry lock --no-update
poetry install
```
I also fixed a spelling error in man/git-summary.md, which was not
caught by the old version of codespell. After updating the file I also
updated the related files by running the following commands:
```
cd man
make -C .. man/git-summary.{1,html}
```
* add git-wip and git-unwip
Updated/re-built the documentation with:
```
cd man
make -C .. man/git-unwip.{1,html}
make -C .. man/git-wip.{1,html}
make -C .. man/git-extras.{1,html}
```
32 lines
769 B
Groff
32 lines
769 B
Groff
.\" generated with Ronn-NG/v0.10.1
|
|
.\" http://github.com/apjanke/ronn-ng/tree/0.10.1
|
|
.TH "GIT\-WIP" "1" "May 2025" "" "Git Extras"
|
|
.SH "NAME"
|
|
\fBgit\-wip\fR \- Create a Work In Progress commit
|
|
.SH "SYNOPSIS"
|
|
\fBgit\-wip\fR
|
|
.SH "DESCRIPTION"
|
|
Create a Work In Progress commit, include all files in the working directory\.
|
|
.SH "OPTIONS"
|
|
None
|
|
.SH "EXAMPLES"
|
|
Create a WIP commit which stores all changes in the working directory\.
|
|
.IP "" 4
|
|
.nf
|
|
$ git wip
|
|
.fi
|
|
.IP "" 0
|
|
.P
|
|
Later on, undo the commit and continue making changes\.
|
|
.IP "" 4
|
|
.nf
|
|
$ git unwip
|
|
.fi
|
|
.IP "" 0
|
|
.SH "AUTHOR"
|
|
Written by Andrew Sullivan Cant <\fImail@andrewsullivancant\.ca\fR>
|
|
.SH "REPORTING BUGS"
|
|
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
|
|
.SH "SEE ALSO"
|
|
<\fIhttps://github\.com/tj/git\-extras\fR>
|