[git]優先パラメータ



gitプリファレンスパラメータ


git config(git優先パラメータ)

  • すべての優先パラメータを表示
  • git config --list
  • 変換プロファイル
  • を開く.
    git config --global -e
    設定
  • Gitエディタ
  • git config --global core.editor "code" # vscode를 에디터로 설정
    git config --global core.editor "code --wait" # 에디터 실행동안 터미널은 대기
  • gitユーザ情報
  • を設定する.
    git config --global user.name "유저이름(깃헙닉네임)"
    git config --global user.email "이메일주소"
    git config user.name # user.name 정보 확인
    git config user.email # user.eamil 정보 확인
    設定
  • 自動CRLF
  • git config --global core.autocrlf true # for window
    git config --global core.autocrlf input # for mac
    オートCRLFとは?
    各オペレーティングシステムでは、エディタの新しい改行文字に含まれる文字列が変更されます.
    ウィンドウでtalk-returnとline feedが同時に入ります.
    Macではラインフィードが1つしかありません.
    これらの違いにより、Gitリポジトリが異なるオペレーティングシステムに使用される場合、
    改行文字列が変化するためgit historyまたはgitエラーが発生する可能性があります.
    この問題を解決する方法は自動CRLFである.
    ウィンドウでtrueに設定した場合、gitに保存するとリターンが削除されます.
    gitからウィンドウにインポートすると、自動的に貼り付けられて戻ります.
    Macがinputに設定した場合、gitに保存するとリターンが削除されます.
    gitからmacを取得しても変更は発生しません.
  • carriage-return : \r
  • line feed : \n
  • git別名の設定(git略語の設定)
  • git config --global alias.co checkout # checkout 키워드를 co 키워드로 단축
    git config --global alias.br branch # branch 키워드를 br 키워드로 단축
    git config --global alias.ci commit # commit 키워드를 ci 키워드로 단축
    git config --global alias.st status # status 키워드를 st 키워드로 단축

    gitコマンドヘルプの表示

    git 명령어 --help # 자세히
    git 명령어 --h # 간단히
    
    # 예시
    git config --help
    git config --h