Git有什么常用的命令

本篇內(nèi)容主要講解“Git有什么常用的命令”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Git有什么常用的命令”吧!

創(chuàng)新互聯(lián)公司一直通過網(wǎng)站建設(shè)和網(wǎng)站營(yíng)銷幫助企業(yè)獲得更多客戶資源。 以"深度挖掘,量身打造,注重實(shí)效"的一站式服務(wù),以成都網(wǎng)站建設(shè)、做網(wǎng)站、移動(dòng)互聯(lián)產(chǎn)品、全網(wǎng)營(yíng)銷推廣服務(wù)為核心業(yè)務(wù)。10余年網(wǎng)站制作的經(jīng)驗(yàn),使用新網(wǎng)站建設(shè)技術(shù),全新開發(fā)出的標(biāo)準(zhǔn)網(wǎng)站,不但價(jià)格便宜而且實(shí)用、靈活,特別適合中小公司網(wǎng)站制作。網(wǎng)站管理系統(tǒng)簡(jiǎn)單易用,維護(hù)方便,您可以完全操作網(wǎng)站資料,是中小公司快速網(wǎng)站建設(shè)的選擇。

1、git clone

功能:克隆git倉。

格式:git clone url

用法:

## clone rockpi代碼,下載完成后,代碼存儲(chǔ)在rockchip-bsp文件夾git clone --recursive https://github.com/radxa/rockchip-bsp.git## clone rockpi代碼,下載完成后,代碼存儲(chǔ)在rockpi文件夾git clone --recursive https://github.com/radxa/rockchip-bsp.git rockpi

clone完成后,已經(jīng)存在git倉。

如果本地代碼沒有git倉,可使用git init命令初始化空的git倉。

2、git init

功能:初始化本地倉,命令執(zhí)行完后生成.git文件夾。用于新建本地git倉,進(jìn)行代碼管理。

格式:git init

用法:

root@ubuntu:/home/run/code/libdrm-2.4.89# git initInitialized empty Git repository in /home/run/code/libdrm-2.4.89/.git/
3、git status

功能:檢查當(dāng)前文件狀態(tài)。

格式:git status

用法:

root@ubuntu:/home/run/code/libdrm-2.4.89# git statusOn branch masterNo commits yetUntracked files:  (use "git add <file>..." to include in what will be committed)        Makefile.am        Makefile.in        Makefile.sources        README        aclocal.m4        amdgpu/        ...

注:由于是本地新建git倉,此時(shí)文件屬于Untracked狀態(tài)。

4、git add

功能:跟蹤文件。

格式:git add

用法:

root@ubuntu:/home/run/code/libdrm-2.4.89# git add .root@ubuntu:/home/run/code/libdrm-2.4.89# git statusOn branch masterNo commits yetChanges to be committed:  (use "git rm --cached <file>..." to unstage)        new file:   Makefile.am        new file:   Makefile.in        new file:   Makefile.sources        new file:   README        new file:   aclocal.m4        new file:   amdgpu/Makefile.am

注:

1)git add filename:跟蹤名為filename的文件。

2)git add -u:跟蹤被修改或刪除文件,不包括新增文件。

3)git add .:跟蹤所有變化,等同git add -A。

## 1.刪除git倉中的README,新增加readme.txtroot@ubuntu:/home/run/code/test/libdrm-2.4.89# rm READMEroot@ubuntu:/home/run/code/test/libdrm-2.4.89# touch readme.txtroot@ubuntu:/home/run/code/test/libdrm-2.4.89# git statusOn branch masterChanges not staged for commit:  (use "git add/rm <file>..." to update what will be committed)  (use "git checkout -- <file>..." to discard changes in working directory)        deleted:    READMEUntracked files:  (use "git add <file>..." to include in what will be committed)        readme.txtno changes added to commit (use "git add" and/or "git commit -a")## 2. git add . :跟蹤所有變化,和 git add -A 相同root@ubuntu:/home/run/code/test/libdrm-2.4.89# git add .root@ubuntu:/home/run/code/test/libdrm-2.4.89# git statusOn branch masterChanges to be committed:  (use "git reset HEAD <file>..." to unstage)        deleted:    README        new file:   readme.txt## 3. 回退到步驟1root@ubuntu:/home/run/code/test/libdrm-2.4.89# git reset HEAD READMEUnstaged changes after reset:D       READMEroot@ubuntu:/home/run/code/test/libdrm-2.4.89# git reset HEAD readme.txtUnstaged changes after reset:D       READMEroot@ubuntu:/home/run/code/test/libdrm-2.4.89# git statusOn branch masterChanges not staged for commit:  (use "git add/rm <file>..." to update what will be committed)  (use "git checkout -- <file>..." to discard changes in working directory)        deleted:    READMEUntracked files:  (use "git add <file>..." to include in what will be committed)        readme.txtno changes added to commit (use "git add" and/or "git commit -a")## 4. git add -uroot@ubuntu:/home/run/code/test/libdrm-2.4.89# git add -uroot@ubuntu:/home/run/code/test/libdrm-2.4.89# git statusOn branch masterChanges to be committed:  (use "git reset HEAD <file>..." to unstage)        deleted:    READMEUntracked files:  (use "git add <file>..." to include in what will be committed)        readme.txt    ## 新增文件沒有被跟蹤
5、git commit

功能:提交更新。

格式:git commit

用法:

root@ubuntu:/home/run/code/libdrm-2.4.89# git commit -m "Init code"[master (root-commit) bfa9cc1] Init code 337 files changed, 156347 insertions(+) create mode 100644 Makefile.am create mode 100644 Makefile.in create mode 100644 Makefile.sources create mode 100644 README create mode 100644 aclocal.m4 create mode 100644 amdgpu/Makefile.am

注:

1)git commit:?jiǎn)?dòng)文本編輯器,輸入提交說明。文本編輯器使用git config指定,可參考前一篇文章。

2)git commit -m “...”:在-m后輸入提交信息,直接提交。

3)git commit --amend:對(duì)上次提交的信息進(jìn)行修改。

例:

新建本地libdrm-2.4.89 代碼git倉方法如下:

root@ubuntu:/home/run/code/libdrm-2.4.89# git initroot@ubuntu:/home/run/code/libdrm-2.4.89# git add .root@ubuntu:/home/run/code/libdrm-2.4.89# git commit -m "Init code"
6、.gitignore

功能:忽略文件

git倉目錄下編輯.gitignore文件,忽略不需要納入git倉管理的文件,例:編譯后生成的.o等文件。

## 1.新建1.o測(cè)試文件,git status查看文件狀態(tài)root@ubuntu:/home/run/code/libdrm-2.4.89# touch 1.oroot@ubuntu:/home/run/code/libdrm-2.4.89# git statusOn branch masterChanges to be committed:  (use "git reset HEAD <file>..." to unstage)        deleted:    README        new file:   readme.txtUntracked files:  (use "git add <file>..." to include in what will be committed)        1.o## 2.編輯.gitignoreroot@ubuntu:/home/run/code/libdrm-2.4.89# vi .gitignoreroot@ubuntu:/home/run/code/test/libdrm-2.4.89# cat .gitignore*.o## 3.查看文件狀態(tài)時(shí),沒有1.o文件root@ubuntu:/home/run/code/libdrm-2.4.89# git statusOn branch masterChanges to be committed:  (use "git reset HEAD <file>..." to unstage)        deleted:    README        new file:   readme.txtUntracked files:  (use "git add <file>..." to include in what will be committed)        .gitignore

到此,相信大家對(duì)“Git有什么常用的命令”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

分享題目:Git有什么常用的命令
網(wǎng)站URL:http://muchs.cn/article28/pgdhjp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、服務(wù)器托管、Google、動(dòng)態(tài)網(wǎng)站、面包屑導(dǎo)航、企業(yè)網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作