Git中将git add 与 git commit合并
更新:HHH   时间:2023-1-7


修改hello.php文件

vim hello.php
<?php
        echo "hello world!";
?>

查看hello.php文件

cat hello.php

查看项目文件状态

git status -s

add与commit合并操作

git commit -am "合并提交"

命令行输出

返回开发技术教程...