Linux中國
如何在 Ubuntu 上安裝最新版本的 Git
一種方法是從源代碼安裝。這種很酷又老派的方法不適合所有人。值得慶幸的是,Ubuntu Git 維護團隊提供了 PPA,莫可以使用它輕鬆地安裝最新的穩定 Git 版本。
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
即使你以前使用 apt
安裝了 Git,它也將更新為最新的穩定版本。
$ git --version
git version 2.25.0
使用PPA 的好處在於,如果發布了新的 Git 穩定版本,那麼就可以通過系統更新獲得它。僅更新 Ubuntu 來獲取最新的 Git 穩定版本。
配置 Git (推薦給開發者)
如果你出於開發目的安裝了 Git,你會很快開始克隆倉庫,進行更改並提交更改。
如果你嘗試提交代碼,那麼你可能會看到 「Please tell me who you are」 這樣的錯誤:
$ git commit -m "update readme"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'abhishek@itsfoss.(none)')
這是因為你還沒配置必要的個人信息。
正如錯誤已經暗示的那樣,你可以像這樣設置全局 Git 配置:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
你可以使用以下命令檢查 Git 配置:
git config --list
它應該顯示如下輸出:
user.email=you@example.com
user.name=Your Name
配置保存在 ~/.gitconfig
中。你可以手動修改配置。
結尾
我希望這個小教程可以幫助你在 Ubuntu 上安裝 Git。使用 PPA,你可以輕鬆獲得最新的 Git 版本。
如果你有任何疑問或建議,請隨時在評論部分提問。也歡迎直接寫「謝謝」 🙂
via: https://itsfoss.com/install-git-ubuntu/
作者:Abhishek Prakash 選題:lujun9972 譯者:geekpi 校對:wxy
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive
對這篇文章感覺如何?
太棒了
0
不錯
0
愛死了
0
不太好
0
感覺很糟
0
More in:Linux中國
如何通過 VLC 使用字幕
使用 VLC 媒體播放器播放和管理字幕的新手指南。
Unix 桌面:在 Linux 問世之前
僅僅開源還不足以實現開放,還需開放標準和建立共識。
Valve 對於 Ubuntu 的 Snap 版本的 Steam 並不滿意:原因何在
你可能會發現,Snap 版本的 Steam 並不如你期待的那樣好,你怎麼看?
Wine 9.0 發布,實驗性地加入了 Wayland 驅動
Wine 的這個新版本正在為未來做好準備!