@@ -14,31 +14,36 @@ usage: git elegant [-h | --help | help | --version | version]
1414
1515There are commands used in various situations such as
1616
17- act with a repository
17+ enable Elegnat Git services
18+ acquire-git Configures a Git installation.
19+ acquire-repository Configures current repository.
1820 clone-repository Clones a repository and configures it.
1921 init-repository Initializes a new repository and configures it.
20- acquire-repository Configures current repository.
22+
23+ serve a repository
2124 prune-repository Removes useless local branches.
2225
23- manage a personal work
26+ enhance contribution rules
27+ show-workflows Shows configured workflows in the repository.
28+
29+ make day-to-day contributions
2430 start-work Creates a new branch.
2531 save-work Commits current modifications.
2632 amend-work Amends some changes to the most recent commit.
2733 show-work Shows a state of current work in progress.
2834 polish-work Reapplies branch commits interactively.
29- deliver-work Publishes current branch to a remote repository.
3035
31- operate a flow of work management
36+ interact with others
37+ deliver-work Publishes current branch to a remote repository.
3238 obtain-work Checkouts a remote branch matching by a name.
33- accept-work Incorporates a branch on top of the ` master` .
3439
35- release new versions
36- show-release-notes Prints a release log between two references .
40+ manage contributions
41+ accept-work Incorporates a branch on top of the ` master ` .
3742 release-work Releases available work as a new annotated tag.
43+ show-release-notes Prints a release log between two references.
3844
3945 and others
4046 show-commands Prints available Elegant Git commands.
41- acquire-git Configures a Git installation.
4247
4348
4449Please visit https://elegant-git.bees-hive.org to find out more.
@@ -312,7 +317,7 @@ Displays all available Elegant Git commands. This is useful for completion
312317functions as well as for other cases when you need iteration over the available
313318commands.
314319
315- Approximate commands flow is
320+ Approximate command's output is
316321``` bash
317322==>> git elegant show-commands
318323start-work
@@ -338,10 +343,9 @@ There are two options for a `layout`:
338343hosting is unknown, the default layout is used. Now only GitHub is supported
339344(an HTML output).
340345
341- Approximate commands flow is
346+ Approximate command's output is
342347``` bash
343348==>> git elegant show-release-notes
344- # produces output like this
345349Release notes
346350- Add ` show-release-notes` command
347351- Add ` release-work` command
@@ -365,6 +369,30 @@ git status --short
365369git stash list
366370```
367371
372+ # ` show-workflows `
373+
374+ ``` bash
375+ usage: git elegant show-workflows
376+ ```
377+
378+ Shows all personal and common workflows files that are available in the
379+ repository.
380+
381+ Personal workflows are located in ` .git/.workflows ` directory and common ones
382+ are in \' .workflows` relatively to the repository root directory.
383+
384+ Approximate command's output is
385+ ``` bash
386+ ==>> git elegant show-workflows
387+ .git/.workflows/accept-work-after
388+ .workflows/amend-work-ahead
389+ .workflows/amend-work-after
390+ .workflows/release-work-after
391+ .workflows/save-work-ahead
392+ .workflows/save-work-after
393+ ....
394+ ```
395+
368396# ` start-work `
369397
370398``` bash
0 commit comments