更改 git 命令,例如 git push like gp 或其他缩写

Change git command for example git push like gp or other shortform

现在我用的是 ubntu 17.10。

如何更改 git 命令,例如

其他例子如 $ git 添加命令如 $ ga

当我输入 ga 时,它的工作方式类似于 git 添加

如果我正确理解你的问题,那么下面是如何使用别名的详细说明

Git Basics - Git Aliases

您想在 shell 中使用 aliases。 对于 Bash

echo "alias ga='git add .'" >> ~/.bash_profile
echo "alias gc='git commit'" >> ~/.bash_profile
echo "alias gp='git push'" >> ~/.bash_profile

或者,对于 ZShell

echo "alias ga='git add .'" >> ~/.zshrc
echo "alias gc='git commit'" >> ~/.zshrc
echo "alias gp='git push'" >> ~/.zshrc

一次 运行,只需打开您的新终端即可。

考虑使用 Git 别名,例如

git config --global alias.co checkout

https://git-scm.com/book/en/v2/Git-Basics-Git-Aliases

要实现您想要的效果,您可以使用 bash 别名

在您的 bash 提示符中键入

alias ga="git add ."

这仅在您关闭 shell 之前有效。要让您的别名持久化,请将它们添加到您的 ~/.profile 文件中。

echo 'alias ga="git add ."' >> ~/.profile

Ubuntu 使用 ~/.profile 而不是 ~/.bash_profile.

祝你好运!