Skip to content

Commit

Permalink
Merge pull request #89 from SatoshiNakao-git/patch-1
Browse files Browse the repository at this point in the history
Fix git-alias message
  • Loading branch information
joelparkerhenderson committed Sep 23, 2022
2 parents 3cec054 + 727c727 commit 8e85245
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions doc/git-alias/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@
Git alias:

```git
alias = "!f(){ \
echo 'Git Alias is project that provides a collection of git alias commands.'
echo 'The purpose is to help make git easier, faster, and more capable.'
echo 'See the open source software t https://github.com/gitalias/gitalias.'
echo ''
echo 'To see your existing git aliases:'
echo ' git aliases'
ehco ''
echo 'To see your existing git aliases by using git directly:
echo ' git config --get-regexp ^alias\\.
echo ''
};f"
alias = "!f(){ \
echo \"Git Alias is project that has a collection of git alias commands.\"; \
echo \"The purpose is to help make git easier, faster, and more capable.\"; \
echo \"Free open source repository <https://github.com/gitalias/gitalias>.\"; \
echo \"\"; \
echo \"To see your existing git aliases:\"; \
echo \" git aliases\"; \
echo \"\"; \
echo \"To see your existing git aliases by using git directly:\"; \
echo \" git config --get-regexp ^alias\\.\"; \
};f"
```

Example:
Expand Down

0 comments on commit 8e85245

Please sign in to comment.