What does “git commit -vam ” accomplish?

后端 未结 3 667
执念已碎
执念已碎 2021-01-29 16:23

I would like to ask what does the command \"git commit -vam \"message\" \" accomplish, because I have seen no difference with the command \" git commit

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-29 16:56

    -a -> -all Stage all files that have been modified or deleted

    -v -> --verbose Show the diff between your changes and HEAD

    -m --> --message Commit Message for your commit.

    The Man page for Git lists all of the arguments the git command can take, with a detailed description of their purpose: https://www.kernel.org/pub/software/scm/git/docs/

    You can also access this from any *nix system via man git

提交回复
热议问题