如何对这3个命令进行分组:
git init
git add .
git commit -m "Initialize repository"
我当然有这个,但我正在寻找更短的东西。如果存在则更优雅:
me@local:~$ git init; git add .; git commit -m "Initialize repository"
答案 0 :(得分:5)
创建别名:
git config --global alias.here '!git init . && git add . && git commit --allow-empty -m "Initialize repository"'
然后像
一样使用它git here
请注意,我已将--allow-empty
选项添加到git commit
,这将使其在空目录和包含内容的目录中工作。