zsh-users
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.stephenson@samsung.com>
To: Zsh Users <zsh-users@zsh.org>
Subject: Re: Multi-word aliases?
Date: Tue, 04 Nov 2014 09:56:50 +0000	[thread overview]
Message-ID: <20141104095650.3f198112@pwslap01u.europe.root.pri> (raw)
In-Reply-To: <20141104090838.GA27526@linux.vnet.ibm.com>

On Tue, 04 Nov 2014 10:08:38 +0100
Dominik Vogt <vogt@linux.vnet.ibm.com> wrote:
> Using git, I want to automatically switch on certain command line
> options for certain git subcommands.  For example, "git rebase"
> should *always* be silently replaced by "git rebase --keep-empty".
> git-config does not help here, because it cannot set the
> --keep-empty option.
> 
> Now, the shell already has an aliasing mechanism.  For "normal"
> commands it would be just somethins like "alias ls='ls -F'" For
> now I've settled with a suboptimal approach using alises:
> 
>   # force treating the second argument like a command
>   alias git="git "
>   # aliasing rule for the first argument of git commands
>   alias rebase="rebase --keep-empty"

The usually way of handling this is to add a function that
interprets its arguments and can tweak them before passing
them through.  The tricky bit here is that git can take
options which you need to be able to take account of, so
the obvious trivial

git() {
   case $1 in
   (rebase)
   set -- rebase --keep-empty "${(@)argv[2,-1]}"
   ;;
   esac
   command git "$@"
}

isn't good enough.  But it's a start.

I haven't tried myself, but presumably you tried

   git config --global alias.rebase "rebase --keep-empty"

and that didn't work?

pws


  reply	other threads:[~2014-11-04 10:07 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-04  9:08 Dominik Vogt
2014-11-04  9:56 ` Peter Stephenson [this message]
2014-11-04 10:43   ` Dominik Vogt
2014-11-04 10:59     ` Mikael Magnusson
2014-11-04 11:33       ` Dominik Vogt
2014-11-04 12:32         ` Mikael Magnusson
2014-11-04 12:39           ` Peter Stephenson
2014-11-04 12:53             ` Dominik Vogt
2014-11-04 15:57               ` Vincent Lefevre
2014-11-04 11:32     ` Peter Stephenson
     [not found] <20141104090838.GA27526__23771.1416128606$1415092256$gmane$org@linux.vnet.ibm.com>
2014-11-04 10:20 ` Stephane Chazelas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141104095650.3f198112@pwslap01u.europe.root.pri \
    --to=p.stephenson@samsung.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).