溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Ubuntu中Git常用命令有哪些

發(fā)布時(shí)間:2021-12-16 13:46:41 來源:億速云 閱讀:181 作者:小新 欄目:互聯(lián)網(wǎng)科技

這篇文章主要為大家展示了“Ubuntu中Git常用命令有哪些”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Ubuntu中Git常用命令有哪些”這篇文章吧。

1、安裝

基于Ubuntu系統(tǒng),git安裝命令如下:

## 安裝最小依賴性的主要組件apt-get install git或## 安裝包含所有sub-packagesapt-get install git-all

2、查看版本信息

root@ubuntu:/home/run# git --versiongit version 2.17.1

3、配置用戶信息

## 配置用戶名,例:rungit config --global user.name run## 配置郵箱,例:run@263.comgit config --global user.email run@263.com## 配置文本編輯器,例:vimgit config --global core.editor vim## 配置git著色git config --global color.ui auto## 查看某個(gè)配置信息,例:user.emailgit config user.email## 查看配置信息git config --list## 查看配置信息及所在文件git config --list --show-origin

例:

## 查看配置信息及所在文件root@ubuntu:/home/run/code/rockchip-bsp# git config --list --show-originfile:/root/.gitconfig   user.email=run@263.comfile:/root/.gitconfig   user.name=runfile:/root/.gitconfig   color.ui=autofile:/root/.gitconfig   core.editor=vimfile:.git/config        core.repositoryformatversion=0file:.git/config        core.filemode=truefile:.git/config        core.bare=falsefile:.git/config        core.logallrefupdates=truefile:.git/config        submodule.active=.file:.git/config        remote.origin.url=https://github.com/radxa/rockchip-bsp.gitfile:.git/config        remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*file:.git/config        branch.master.remote=originfile:.git/config        branch.master.merge=refs/heads/masterfile:.git/config        submodule.build.url=https://github.com/radxa/build.gitfile:.git/config        submodule.kernel.url=https://github.com/radxa/kernel.gitfile:.git/config        submodule.rkbin.url=https://github.com/radxa/rkbin.gitfile:.git/config        submodule.rootfs.url=https://github.com/radxa/rk-rootfs-build.gitfile:.git/config        submodule.u-boot.url=https://github.com/radxa/u-boot.git## 查看配置文件root@ubuntu:/home/run/code/rockchip-bsp# cat ~/.gitconfig[user]        email = run@263.com        name = run[color]        ui = auto[core]        editor = vim

注:

1、git config -h查看其他參數(shù)。

2、--global對應(yīng)的配置文件:~/.gitconfig,只需要運(yùn)行一次,針對當(dāng)前用戶。

3、本地倉庫的git配置文件:.git/config。

4、如果針對某個(gè)git倉庫配置,可以省略--global或者替換為--local參數(shù)。

5、每次git提交都會用到nameemail等信息。

以上是“Ubuntu中Git常用命令有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI