-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add av commit create man page (#127)
per title, adding to #124
- Loading branch information
Showing
2 changed files
with
35 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# av-commit-create 1 "" av-cli "Aviator CLI User Manual" | ||
|
||
# NAME | ||
|
||
av-commit-create - Record changes to the repository with commits. | ||
|
||
# DESCRIPTION | ||
|
||
Create a new commit containing the current contents of the index and the given log message describing the changes, then run **av stack sync** on all subsequent child branches with the new commit. | ||
|
||
Previous to running **av-commit-create**, add changes to the index via **git-add** to incrementally "add" changes to the index. | ||
|
||
# OPTIONS | ||
|
||
-m <msg> | ||
--message=<msg> | ||
Use the given <msg> as the commit message. | ||
|
||
-a | ||
--all | ||
Automatically stage modified/ deleted files, but new files you have not told Git about are not affected. (Same as git commit --all) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters