pjhashes

simonmichael
Jan 31, 2022, 10:44 PM
QQWDF7WVTS2HBSHYGPNU6WHME42WSG5K57QTXWB6EC22O6FAJF7QC

Dependencies

Change contents

  • replacement in bashrc at line 41
    [3.1][3.1:64]()
    # pjlh - list just the hashes.
    alias pjlh='pj log --hash-only'
    [3.1]
    [3.451]
    # pjhashes [N] - list the patch hashes, or just the last N hashes.
    pjhashes() {
    N="$1"
    if [[ -n $N ]]; then
    pj log --hash-only | head -n "$N"
    else
    pj log --hash-only
    fi
    }
  • replacement in README.md at line 24
    [2.537][2.537:569]()
    # pjlh - list just the hashes.
    [2.537]
    [2.569]
    # pjhashes [N] - list the patch hashes, or just the last N hashes.