每天學幾個Git命令 Git安裝與配置

2021-09-24 01:46:15 字數 1425 閱讀 5317

git安裝

$ sudo apt-get install git
$ sudo yum install git
$ sudo yum install git-core
在mac os x 上安裝

在mac上,這裡推薦使用homebrew 安裝,具體方法請參考homebrew 的文件:

2.然後按預設選項安裝即可。安裝完成後,在開始選單裡找到git->git bash,彈出乙個類似命令列視窗,就說明git安裝成功!

使用git --version命令檢視git版本

$ git --version

git version 2.21.0.windows.1

檢視git的安裝目錄

$ which git

/mingw64/bin/git

更多安裝方法可以參考官網教程(起步-安裝-git)

git配置

git自帶乙個 git config 的工具,專門用來配置或讀取相應的工作環境變數。這些變數可以儲存在三個不同的位置:

優先順序:local > global > system

設定 user.name 和 user.email

$ git config --global user.name 'geekymv'

$ git config --global user.email '[email protected]'

檢視 user.name配置值

$ git config user.name
檢視 user.email配置值

$ git config user.email
檢視所有配置

$ git config --list
獲取幫助

若你使用 git 時需要獲取幫助,有三種方法可以找到 git 命令的使用手冊:

$ git help $ git --help

$ man git-

例如,要想獲得 config 命令的手冊,執行

$ git help config
小結

git 操作幾個命令

git clone ssh 壓棧 git stash 查狀態 git status 切換到要修改的提交 git rebase i head 3 提交完成後的修改 git commit a amend 確認提交 git rebase continue 提交修改的 到伺服器 git push origi...

通過命令學git

設定提交 時的使用者資訊 常用命令 遠端操作 分支管理 刪除分支 分支合併 檢視提交歷史 git標籤 配置git和github 菜鳥教程鏈結 git init git init 資料夾 git add c git add readme git commit m 初始化專案版本 git clone g...

Git常用的幾個命令

轉殖遠端 git clone url 檢視提交日誌 git log 檢視打的標籤 git tag 拉取遠端 自動合併到當前分支 超級好用的命令 git pull origin 分支名 檢視分支本地分支 git branch 檢視遠端分支 git branch a 本地新建分支a git branch...