一、git 安裝:
要先安裝git依賴的一些庫,比如curl等,在上面網頁可以看到git依賴的包
tar -zxvf git-1.9.4
./configure --prefix=*** --with-curl=yy/curl/
make
make install
二、git命令:
git remote -v 檢視所clone的遠端url
git status
git branch
git checkout
git checkout -t origin/*** 拷貝遠端分支***到本地倉庫,並切換到***分支
git pull 在***分支pull,拉取最新**
git branch yyy 建立分支yyy
git checkout master 切換到分支master
git add
git commit -m yourcomment
git push origin/zzz分支, 將當前分支上傳到遠端的zzz分支上
git diff
git rm
三、遇到問題解決:
1.安裝git-1.9.2的make install過程中,遇到某個current time函式的鏈結問題
解決辦法:換乙個版本安裝,安裝了git-1.9.4
解決辦法:在安裝git時,配置./configure --with-curl選項
比如我安裝curl-7.50.1時,./configure --prefix=/home/***/curl/ 然後make make install
那麼,安裝git時./configure --with-curl=/home/***/curl/ 然後make make install,這樣就可以git clone http://***x/yyy.git了。
常用命令補充
dd命令dd命令的輸入檔案,來生成乙個指定大小的檔案 引數 作用 if 輸入的檔名稱 of 輸出的檔名稱 bs 設定每個 塊 的大小 count 設定要複製 塊 的個數 root linuxprobe dd if dev zero of 560 file count 1 bs 560m tar命令 ...
1 常用命令補充
r 讀許可權 w 寫許可權 x 執行許可權 linux unix 的檔案呼叫許可權分為 檔案所有者 owner 使用者組 group 其它使用者 other users 外鏈轉存失敗,源站可能有防盜煉機制,建議將儲存下來直接上傳 img qkvbbc7e 1616114286244 1.常用命令.a...
linux常用命令(待完善)
1.解壓縮命令。針對.tar.xz檔案解壓方法 1 xz d tar.xz 2 tar xvf tar。針對.tar.bz2檔案解壓方法 tar jxvf tar.bz2 針對.zip檔案解壓方法 unzip zip 針對.deb檔案的解壓方法 dpkg deb fsys tarhellos deb...