2017-05-16 17 views
0

명령을 git add이라고 가정 해 봅시다. man git add을 입력하면 페이지가 표시됩니다.[옵션]에 대한 Linux man 명령

  • git add --verbosegit add -v과 동일합니다 :

    SYNOPSIS 
        git add [--verbose | -v] [--dry-run | -n] [--force | -f] [--interactive | -i] [--patch | -p] 
          [--edit | -e] [--[no-]all | --[no-]ignore-removal | [--update | -u]] 
          [--intent-to-add | -N] [--refresh] [--ignore-errors] [--ignore-missing] 
          [--] [<pathspec>...] 
    

    내가 두 quesions 있나요?

  • git, python, --fullNameA과 같은 명령은 -A과 동일합니까? , [--xxx | -x] 문자의 각 옵션은 동일

답변

1

(fullNameA는 A를 줄여 쓴다) 그래서 [--verbose | -v]--verbose-v으로 같은 행동을 할 것을 의미합니다. 이는 man 페이지 모두에 해당합니다.