@@ -9,12 +9,12 @@ Be lazy and just commit
99
1010## Description
1111
12- This provides the ` git lzc ` command. This command can be used
12+ This provides the ` git lazy-commit ` command. This command can be used
1313in situations where you don't really care about choosing which
1414changes to track or writing your commit message -- you just want to
1515commit your work.
1616
17- By its nature, ` git lzc ` can very easily add accidental changes
17+ By its nature, ` git lazy-commit ` can very easily add accidental changes
1818to the git history if the user isn't careful. So, while this
1919tool may be appealing to git beginners, its target audience is
2020actually experienced git users who know when they want to break
@@ -23,13 +23,13 @@ the rules for creating good commits.
2323### Staged Changes
2424
2525If you have staged changes (` git add path/to/file ` ), then
26- ` git lzc ` will commit those staged changes. If you * do not*
27- have any staged changes, then ` git lzc ` will commit * all* changes,
26+ ` git lazy-commit ` will commit those staged changes. If you * do not*
27+ have any staged changes, then ` git lazy-commit ` will commit * all* changes,
2828** including untracked files** (so be careful!).
2929
3030### Commit Messages
3131
32- ` git lzc ` will write your commit message for you. If you've changed
32+ ` git lazy-commit ` will write your commit message for you. If you've changed
3333a single file, the commit message will look like this:
3434
3535```
@@ -77,6 +77,15 @@ Invoke-WebRequest "https://raw.githubusercontent.com/spenserblack/git-lazy-commi
7777### From GitHub Releases
7878
7979Download the appropriate executable from the [ release assets] [ latest-release ] ,
80- rename it to ` git-lzc ` , and add it to a location in ` PATH ` .
80+ rename it to ` git-lazy-commit ` , and add it to a location in ` PATH ` .
81+
82+ ## Suggested Alias
83+
84+ ` git lazy-commit ` can be annoying to type frequently, so you can create an alias
85+ so that you only need to call ` git lzc ` .
86+
87+ ``` shell
88+ git config --global alias.lzc lazy-commit
89+ ```
8190
8291[ latest-release ] : https://github.com/spenserblack/git-lazy-commit/releases/latest
0 commit comments