單機上使用git

2021-10-03 18:11:55 字數 1751 閱讀 7695

安裝git,初始化git倉庫

新增**,提交,檢視狀態

echo -e "abc\ndef\nghi" > test.file

git add test.file

git commit -m "add test.file v1"

再次修改 test.file

git add test.file

git commit -m "modify test.file v2"

git status

再次修改 test.file,檢視狀態

提交之後,檢視日誌記錄

一行顯示日誌

回滾到某個版本

git reset --hard 62140d0c898312394cb4
檢視所有歷史版本

還原到 這個字串對應的版本

刪除了檔案,但沒有提交還在版本倉庫裡

rm -rf test.file
還原檔案

git checkout -- test.file
再次修改 test.file,加上標記

echo aaa >> test.file

git add test.file

撤銷標記,資料還原到標記前的狀態

git reset head test.file

git checkout -- test.file

刪除檔案

git rm test.file

git commit -m "delete test.file"

redis單機上部署集群

redis的安裝 版本至少是3.2.8及其以上,這裡以3.2.8版本為例說明 1.安裝redis wget tar xf redis 3.2.8.tar.gz cd redis 3.2.8 make malloc jemalloc make prefix usr local redis instal...

git 單機應用

git init 補始化git config global user.name 名字 配置名字,告訴git你是誰 git config global user.email 郵箱 設定你的郵箱 git init 初始化git倉庫 git init git a 檔名 git commit a m mes...

破解限制單機上網方法

雙路由器法 最簡單 即把路由配製成交換機。什麼是雙路由器呢?我們先假定你的寬頻貓不具備路由功能 事實上,網通給的寬頻貓幾乎都不具備路由功能 我們購買兩台路由器,一台按照正常方法和寬頻貓連線好,設定好撥號引數,設定lan口ip為 192.168.1.2 192.168.1.255 子網掩碼 255.2...