Skip to content
stettberger edited this page Sep 24, 2010 · 2 revisions

Some useful tips with the metagit usage

There are some shortcuts which allows you to use metagit more efficient. If you have some other cool shortcuts just write them down here.

I use two aliases to get quick access to git and metagit.

alias g=git
alias m=metagit

For using metagit cd more effectifly i have a shell function which executes directly the result of metagit cd and brings me to the right repository.

function mm() {
  $(metagit cd $@)
}

Clone this wiki locally