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
今すぐインストールされ、セットアップを設定することができます
あなたの
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
今すぐインストールされ、セットアップを設定することができます
正しくインストールされているか確認する
Open your cmd
and type Users\uname> git --version
If there's no version you may reconsider re-installing the app again
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 --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を設定しました
Reference
この問題について(LinuxとWindowsでgitを設定する方法), 我々は、より多くの情報をここで見つけました
https://dev.to/forinda/how-to-setup-git-on-linux-and-windows-2b3h
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
$ git config --list
Reference
この問題について(LinuxとWindowsでgitを設定する方法), 我々は、より多くの情報をここで見つけました https://dev.to/forinda/how-to-setup-git-on-linux-and-windows-2b3hテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol