aboutsummaryrefslogtreecommitdiffstats
path: root/fish/functions/gitcommands.fish
blob: 97f78f81e2cf25d17708e73a566665936d0df4d2 (plain) (blame)
1
2
3
4
5
6
7
function gitcommands --description 'Grep (or not) git-aliases.txt'
	if count $argv > 0
cat ~/Nextcloud/Notes/git-aliases.txt | grep $argv[1]
else
cat ~/Nextcloud/Notes/git-aliases.txt
end
end