标签: git testing version-control tar
我讨厌说(cd ../../.. && git archive HEAD) | (cd /var/www/html/ && tar xf -) #testing-on-prod。有没有一种方法可以剪掉最初的cd,指定我希望整个树而不是当前的工作目录都被归档?
(cd ../../.. && git archive HEAD) | (cd /var/www/html/ && tar xf -) #testing-on-prod
cd
答案 0 :(得分:1)
也许只是.bashrc中的快捷功能?
<shortcut_name> () { cd <path> ; <other command> ; }