1

我想自动使用该git remote命令的 -v 选项。我怎样才能做到这一点?

4

2 回答 2

2

运行这个:

git config --global alias.remotes 'remote -v'

这将在您的 git 配置文件中放置一个 git 命令别名。要使用它,请键入git remotes。不幸的是,您不能使用别名覆盖实际的 git 命令。

于 2012-09-08T19:02:08.860 回答
2

为您的 shell 命令添加别名,如下所示:

alias grem='git remote -v'

从技术上讲,这应该放在 .bashrc 中,您应该从 .profile(或 .bash_profile)中引用它。

然后你可以使用一个更短的命令,得到你想要的:

grem

因此,您的 .bashrc 文件(在您的主目录中)将包含您的所有别名,然后您的 .profile/.bash_profile (无论您拥有哪个)将包含:

if [ -f ~/.bashrc ]; then
   . ~/.bashrc
fi
于 2012-09-08T17:26:16.970 回答