通过function来做
示例:
alias ttt='test() { echo $1;}; test'
然后终端输入:ttt 33,就会输出33
如推送代码到远程服务器的命令(git push --no-thin aosp HEAD:refs/for/远程分支名):
git push --no-thin aosp HEAD:refs/for/mp_mt6737_trunk
(mp_mt6737_trunk是远程分支,当存在多个项目时,分支是不一样的,通过“git branch -a”可以查到,如何通过alias简化输入呢?),示例如下(通过 function +$1 实现):
alias pushcode='push() { git push --no-thin aosp HEAD:refs/for/$1;}; push'
使用时在终端输入:pushcode 远程分支名
完整示例:
查看远程分支:
git branch -a
remotes/m/mp_6737 -> aosp/mp_mt6737_trunk
推送代码:
pushcode mp_mt6737_trunk