是否可以这样做:
git add file1 file2 file3 && git commit -m 'blah blah blah'
具有这样的内容:
git ac file1 file2 file3 -m 'blah blah blah'
我确定可以使用bash脚本完成此操作,但想知道是否可以通过git来创建全局别名。
答案 0 :(得分:2)
可以使用普通的旧git commit
git commit -m "here's the comment" file1 file2 file3
顺便说一句,这不是您可以做的最好的事情。暂存区域是一个非常强大的工具...。但是事实是,可以通过这种方式使用提交。