如何为远程服务器上的git commit,git pull,git push和pull创建bash或zsh别名?

时间:2015-09-28 20:06:52

标签: bash terminal zsh zshrc zsh-alias

如果我在终端输入以下内容,我可以完成我想要的一切:

git commit -am "my commit message" ; git pull ; git push ; ssh user@server 'cd /path/to/git/repo/ ; git pull ; exit'

我想在~/.zshrc中创建与别名相同的内容。类似的东西:

alias pushit () { git commit -am "$@" ; git pull ; git push ; ssh user@server 'cd /path/to/git/repo/ ; git pull ; exit' }

如此在终端中运行:

pushit "my commit message"

相反,每当我重新加载〜/ .zshrc(source ~/.zshrc)或打开一个新的终端窗口时,我都会看到它循环遍历我的别名数十次。目前尚不清楚它是否实际运行。

我做错了什么?

备注:

  1. 这不适用于关键任务服务器。它仅供个人使用。我知道它的形式很差。
  2. 我宁愿不使用git的[别名]工具,这样我就可以将所有别名保存在同一个地方(~/.zshrc)。

1 个答案:

答案 0 :(得分:5)

您想要一个函数而不是别名:

function pushit () { 
    git commit -am "$@"
    git pull
    git push
    ssh user@server -- 'cd /path/to/git/repo/ ; git pull'
}