Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为启动文本编辑器设置了一些别名,因此我不必输入完整路径。但是,当我尝试在 git 配置文件中使用这些别名时。似乎无法识别这些别名。有什么办法可以做到这一点?
我怀疑(不费心去看)git 会使用类似execv()or的东西生成外部命令/bin/sh/ -c "...",所以你不会得到你的环境/功能/别名。如果需要,您需要创建一个可执行的 shell 脚本:
execv()
/bin/sh/ -c "..."
#!/bin/bash -i do stuff with your aliases here