Skip to content

Commit

Permalink
πŸ‘Œ IMPROVE: Fish shell installation
Browse files Browse the repository at this point in the history
  • Loading branch information
ahollister authored and Ahmad Awais ⚑️ committed Oct 12, 2018
1 parent e789072 commit fb117e2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,25 @@ function gtst() {
}
```

To install these functions for the fish shell, run the following commands:

```sh
function gcap; git add .; and git commit -m "$argv"; and git push; end;
function gnew; gcap "πŸ“¦ NEW: $argv"; end
function gimp; gcap "πŸ‘Œ IMPROVE: $argv"; end;
function gfix; gcap "πŸ› FIX: $argv"; end;
function grlz; gcap "πŸš€ RELEASE: $argv"; end;
function gdoc; gcap "πŸ“– DOC: $argv"; end;
function gtst; gcap "βœ… TEST: $argv"; end;
funcsave gcap
funcsave gnew
funcsave gimp
funcsave gfix
funcsave grlz
funcsave gdoc
funcsave gtst
```

<br>

![Using](https://on.ahmda.ws/rP6e/c)
Expand Down

0 comments on commit fb117e2

Please sign in to comment.