mirror of
https://github.com/wfxr/forgit.git
synced 2026-09-10 07:16:23 -04:00
fix typo in comments and README files (#230)
This commit is contained in:
parent
85ccdd3f80
commit
f6040b21a0
2
.github/pull_request_template.md
vendored
2
.github/pull_request_template.md
vendored
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
## Description
|
||||
|
||||
<!-- Please include a summary of the change(and the related issue if any). Please also include relevant motivation and context when necessary. -->
|
||||
<!-- Please include a summary of the change (and the related issue, if any). Please also include relevant motivation and context when necessary. -->
|
||||
|
||||
## Type of change
|
||||
|
||||
|
|
|
|||
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
|
@ -3,7 +3,7 @@
|
|||
name: ci
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
# events, but only for the master branch
|
||||
on: [push, pull_request]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ forgit_reset_head=grh
|
|||
forgit_ignore=gi
|
||||
forgit_checkout_file=gcf
|
||||
forgit_checkout_branch=gcb
|
||||
forgit_branch_delet=gbd
|
||||
forgit_branch_delete=gbd
|
||||
forgit_checkout_tag=gct
|
||||
forgit_checkout_commit=gco
|
||||
forgit_revert_commit=grc
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ function forgit::previous_commit
|
|||
end
|
||||
end
|
||||
|
||||
# extract the first git sha occuring in the input and strip trailing newline
|
||||
# extract the first git sha occurring in the input and strip trailing newline
|
||||
set -g forgit_extract_sha "grep -Eo '[a-f0-9]+' | head -1 | tr -d '[:space:]'"
|
||||
|
||||
set -g forgit_pager "$FORGIT_PAGER"
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ forgit::previous_commit() {
|
|||
# optional render emoji characters (https://github.com/wfxr/emoji-cli)
|
||||
hash emojify &>/dev/null && forgit_emojify='|emojify'
|
||||
|
||||
# extract the first git sha occuring in the input and strip trailing newline
|
||||
# extract the first git sha occurring in the input and strip trailing newline
|
||||
forgit_extract_sha="grep -Eo '[a-f0-9]+' | head -1 | tr -d '[:space:]'"
|
||||
|
||||
forgit_pager=${FORGIT_PAGER:-$(git config core.pager || echo 'cat')}
|
||||
|
|
|
|||
Loading…
Reference in a new issue