summaryrefslogtreecommitdiffstats
path: root/fish/functions/stage.fish
blob: 3d8a984ccecf7e6145da08e64ef3351f22843830 (plain)
1
2
3
4
function stage --wraps='git add' --description 'alias stage git add'
  git add $argv
        
end