1. 程式人生 > >Git 安裝 windows && linux

Git 安裝 windows && linux

sca pre 一個 com ces nag email load nbsp

一、安裝:

windows下安裝Git:

1、下載Git:https://git-scm.com/download/win

2、安裝Git:默認安裝,一直回車

Linux下安裝Git:

yum安裝:

yum install git -y

安裝完即可

二、安裝初始化:

成功安裝完 Git 的第一件事兒就是讓它知道主人是誰!
這個操作非常重要,因為每一個 Git 的提交都會使用到這些信息,一旦確定不可更改。

$ git config --global user.name "your name"
$ git config --global user.email "[email protected]"

如:

$ git config --global user.name "pzzning"
$ git config --global user.email "[email protected]"

--- 本地倉庫傳到github上,github每次commit都會記錄他們

查看信息是否寫入:

C:\Users\nn>git config --list
core.symlinks=true
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslcainfo=D:/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslbackend=openssl
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=manager
user.name=pzzning
[email protected]

C:\Users\nn>

Git 安裝 windows && linux