help/command updates

simonmichael
Feb 1, 2022, 8:24 PM
CCM5YBC3QOHGW7IEO5YUOLKDZALW24IFY35HET2FEZPY7PZCVFJAC

Dependencies

Change contents

  • replacement in bashrc at line 1
    [6.1][4.0:44]()
    # * Pijul command line aliases. -*- sh -*-
    [6.1]
    [6.32]
    # * pijul command line aliases
  • replacement in bashrc at line 11
    [6.97][6.249:331]()
    # pjh - show help for these aliases.
    pjh() { grep -E '^# (pj|\*)' "$THISFILE" ; }
    [6.97]
    [6.333]
    # pjh - show help for these aliases
    pjh() { grep -E '^# (pj|\*|.*disablesimilar)' "$THISFILE" | sed -e 's/^# \*\*/\n**/' -e 's/^# //' ; }
  • replacement in bashrc at line 14
    [6.334][6.332:387]()
    # pj [CMD] - run a pijul command or show pijul's help.
    [6.334]
    [6.387]
    # pj [CMD] - run a pijul command or show pijul's help
  • replacement in bashrc at line 17
    [6.336][6.403:438]()
    # ** pijul setup/uninstall helpers
    [6.336]
    [6.257]
    # ** Setup/uninstall helpers
  • replacement in bashrc at line 19
    [6.258][6.439:499]()
    # pjkeygen - generate a patch-signing key for current user.
    [6.258]
    [6.499]
    # pjkeygen - generate a patch-signing key for current user
  • replacement in bashrc at line 22
    [6.276][6.542:599]()
    # pjconfrm - erase current user's pijul config and keys.
    [6.276]
    [6.599]
    # pjconfrm - erase current user's pijul config and keys
  • replacement in bashrc at line 26
    [6.608][6.730:814]()
    # # pjreporm - immediately erase pijul config and history in the current directory.
    [6.608]
    [6.814]
    # # pjreporm - immediately erase pijul config and history in the current directory
  • replacement in bashrc at line 29
    [6.629][6.848:891]()
    # ** list recorded patches in current repo
    [6.629]
    [6.299]
    # ** List recorded patches in current repo
  • replacement in bashrc at line 31
    [6.300][6.892:915]()
    # pjl - standard list.
    [6.300]
    [6.300]
    # pjl - standard list
  • replacement in bashrc at line 37
    [6.1084][6.991:1078]()
    # pjls - list with summary of file changes.
    # Similar to git log --stat, darcs log -s.
    [6.1084]
    [6.1156]
    # pjls - list with summary of file changes
    # (similar to git log --stat, darcs log -s)
  • replacement in bashrc at line 41
    [6.1][3.0:67]()
    # pjhashes [N] - list the patch hashes, or just the last N hashes.
    [6.1]
    [3.67]
    # pjhashes [N] - list the patch hashes, or just the last N hashes
  • replacement in bashrc at line 51
    [6.452][6.1079:1100]()
    # ** inspect a patch
    [6.452]
    [6.1250]
    # ** Inspect a patch
  • replacement in bashrc at line 53
    [6.1251][6.65:125](),[6.125][6.1141:1193](),[6.1141][6.1141:1193]()
    # pjshow [HASH] - show the last or specified patch in full.
    # Similar to git show [HASH], darcs log -v -h HASH.
    [6.1251]
    [6.1328]
    # pjshow [HASH] - show the last or specified patch in full
    # (similar to git show [HASH], darcs log -v -h HASH)
  • replacement in bashrc at line 57
    [6.1354][6.126:187](),[6.187][6.1235:1294](),[6.1235][6.1235:1294]()
    # pjshowstat [HASH] - summarise the last or specified patch.
    # Similar to git show --stat [HASH], darcs log -v -h HASH.
    [6.1354]
    [6.1450]
    # pjshowstat [HASH] - summarise the last or specified patch
    # (similar to git show --stat [HASH], darcs log -v -h HASH)
  • replacement in bashrc at line 62
    [6.1541][6.1295:1324]()
    # ** show unrecorded changes
    [6.1541]
    [6.1438]
    # ** Show unrecorded changes
  • replacement in bashrc at line 64
    [6.1439][6.1439:1576]()
    # pjs - summarise unrecorded changes (except added files). Add -u to see untracked files.
    # Similar to git status -s, darcs whatsnew -s.
    [6.1439]
    [6.1576]
    # pjs - summarise unrecorded changes (except added files), add -u to see untracked files
    # (similar to git status -s, darcs whatsnew -s)
  • replacement in bashrc at line 68
    [5.1][5.1:128]()
    # pjdiff - show unrecorded changes in full (except added files).
    # Similar to git diff, darcs whatsnew.
    alias pjdiff='pj diff'
    [5.1]
    [6.1599]
    # pjd - show unrecorded changes in full (except added files)
    # (similar to git diff, darcs whatsnew)
    alias pjd='pj diff'
  • replacement in bashrc at line 72
    [6.1600][6.1600:1620]()
    # ** record changes
    [6.1600]
    [6.1620]
    # ** Record changes
  • replacement in bashrc at line 74
    [6.1621][6.251:332](),[6.332][6.1694:1785](),[6.1694][6.1694:1785]()
    # pjrecam 'MSG' [PATHS] - record all unrecorded changes, with the given message.
    # Similar to git commit -am 'MSG', darcs record -am 'MSG'.
    alias pjrecam='pj record -a -m'
    [6.1621]
    [6.1785]
    # pjrec 'MSG' [PATHS] - record all unrecorded changes, with the given message
    # (similar to git commit -am 'MSG', darcs record -am 'MSG')
    alias pjrec='pj record -a -m'
  • replacement in bashrc at line 78
    [6.1786][6.333:420](),[6.420][6.1875:1965](),[6.1875][6.1875:1965]()
    # pjamenda [HASH] [PATHS] - add all unrecorded changes to the last or specified patch.
    # Similar to git commit --amend -a, darcs amend -a.
    alias pjamenda='pj record -a --amend'
    [6.1786]
    [6.1965]
    # pjamend [HASH] [PATHS] - add all unrecorded changes to the last or specified patch
    # (similar to git commit --amend -a, darcs amend -a)
    alias pjamend='pj record -a --amend'
  • replacement in README.md at line 14
    [6.99][6.99:537](),[6.537][3.190:258](),[3.258][6.569:591](),[6.569][6.569:591](),[6.591][2.0:123](),[2.123][6.674:704](),[6.674][6.674:704](),[6.767][6.767:858](),[6.858][5.129:195](),[5.195][6.858:1049](),[6.858][6.858:1049]()
    # * Pijul command line aliases.
    # pjh - show help for these aliases.
    # pj [CMD] - run a pijul command or show pijul's help.
    # ** pijul setup/uninstall helpers
    # pjkeygen - generate a patch-signing key for current user.
    # pjconfrm - erase current user's pijul config and keys.
    # ** list recorded patches in current repo
    # pjl - standard list.
    # pjlv - list with full descriptions. (?)
    # pjls - list with summary of file changes.
    # pjhashes [N] - list the patch hashes, or just the last N hashes.
    # ** inspect a patch
    # pjshow [HASH] - show the last or specified patch in full.
    # pjshowstat [HASH] - summarise the last or specified patch.
    # ** show unrecorded changes
    # pjs - summarise unrecorded changes (except added files). Add -u to see untracked files.
    # pjdiff - show unrecorded changes in full (except added files).
    # ** record changes
    # pjrecam 'MSG' [PATHS] - record all unrecorded changes, with the given message.
    # pjamenda [HASH] [PATHS] - add all unrecorded changes to the last or specified patch.
    [6.99]
    * pijul command line aliases
    pjh - show help for these aliases
    pj [CMD] - run a pijul command or show pijul's help
    ** Setup/uninstall helpers
    pjkeygen - generate a patch-signing key for current user
    pjconfrm - erase current user's pijul config and keys
    ** List recorded patches in current repo
    pjl - standard list
    pjlv - list with full descriptions. (?)
    pjls - list with summary of file changes
    pjhashes [N] - list the patch hashes, or just the last N hashes
    ** Inspect a patch
    pjshow [HASH] - show the last or specified patch in full
    pjshowstat [HASH] - summarise the last or specified patch
    ** Show unrecorded changes
    pjs - summarise unrecorded changes (except added files), add -u to see untracked files
    pjd - show unrecorded changes in full (except added files)
    ** Record changes
    pjrec 'MSG' [PATHS] - record all unrecorded changes, with the given message
    pjamend [HASH] [PATHS] - add all unrecorded changes to the last or specified patch