Git

[Git] commit 옵션

데메즈 2023. 2. 5. 10:07
728x90
반응형
--help
git commit --help

를 하면 commit 에 대한 매뉴얼을 볼 수 있다

 

-a (add하지 않고 바로 커밋)
git commit -a

-a--all

Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.

수정 및 삭제된 파일을 자동으로 스테이징하도록 명령하지만 Git에 대해 알리지 않은 새 파일은 영향을 받지 않습니다.

-m (커밋 메시지를 쓰기위해 vim창을 띄우지 않고 바로 커밋메시지를 쓸 수 있다)
$ git commit -am "6"

(-a 와 -m을 같이 쓰고싶다면  -am으로 쓰면 된다)

-m <msg>--message=<msg>

Use the given <msg> as the commit message. If multiple -m options are given, their values are concatenated as separate paragraphs.

The -m option is mutually exclusive with -c, -C, and -F.

지정된 <msg>를 커밋 메시지로 사용합니다. 여러 -m 옵션이 제공되는 경우 값은 별도의 문단으로 연결됩니다.

-m 옵션은 -c, -C 및 -F와 상호 배타적입니다.

728x90
반응형