添加文件列表并使用git全局别名同时提交它们

时间:2019-03-26 21:28:44

标签: git

是否可以这样做:

git add file1 file2 file3 && git commit -m 'blah blah blah'

具有这样的内容:

git ac file1 file2 file3 -m 'blah blah blah'

我确定可以使用bash脚本完成此操作,但想知道是否可以通过git来创建全局别名。

1 个答案:

答案 0 :(得分:2)

可以使用普通的旧git commit

git commit -m "here's the comment" file1 file2 file3

顺便说一句,这不是您可以做的最好的事情。暂存区域是一个非常强大的工具...。但是事实是,可以通过这种方式使用提交。