LinuxとWindowsでgitを設定する方法

3400 ワード

これはGit環境を設定するためのガイドです



TLR


仮定git 理論

どこでGitを得ることができますか?


あなたのos 我々はそれらを異なる扱います

Windows


Windowsヘッドにgitをインストールするには
Git source link
実行可能ファイルをダウンロードします
ダウンロードすると
ダブルクリック.exe ファイルとライセンス契約を受け入れる
残りの選択肢のためにクリックnext を設定します.
一度あなたのWindowsアプリケーションのリストにヘッドをインストール
検索git bash

正しくインストールされているか確認する

Open your cmd and type Users\uname> git --version

If there's no version you may reconsider re-installing the app again


次にgit設定を設定する必要がありますGit 今すぐインストールされ、セットアップを設定することができます
  • cmd
  • powershell
  • git bash
  • cmder
  • それで、あなたの端末を開いて、以下をタイプしてください
    $ git config --global user.name <username> # eg git config --global user.name "Jane Doe"
    $ git config --global user.email <email-address> # eg git config --global user.email "[email protected]"
    $ git config --global core.editor "code --wait"
    $ git config --global core.autocrlf true
    
    

    Linux


    私は、Debianディストロスを使用しています
  • kali linux
  • Ubuntu
  • zorin
  • Parrot
  • Gitパッケージは端末で既に利用可能です
    確認する$ git --versionもし存在しないなら
    $ sudo apt-get install git
    
    インストールするコマンドgit あなたのシステムに
    次にgitを設定します
    $ git config --global user.name <username> # eg git config --global user.name "Jane Doe"
    $ git config --global user.email <email-address> # eg git config --global user.email "[email protected]"
    $ git config --global core.editor "code --wait"
    $ git config --global core.autocrlf input
    
    

    ⚠️ 気をつけて


    値の違いを考慮してくださいcore.autocrlf for Windows and Linux 差異
    ここでgitを設定し、システムに設定しました
    設定を確認するには
    $ git config --list
    

    出来高



    我々は正常にシステムにgitを設定しました