mkdir learngit // 建立資料夾
cd learngit //跳轉到指定資料夾
pwd //顯示當前資料夾路徑
git init //把這個目錄變成可管理的倉庫
git add learngit.txt // 新增檔案到提交目錄
git commit -m"檔案相關資訊" // 提交檔案並附屬檔案所更改的描述資訊
git status //常看當前狀態,用於描述檔案所更新過的相關狀態
git diff //用於檢視所更改過的相關資訊
git log //用於檢視更改過的日誌檔案
git reset --hard head^// 退回到之前的上乙個版本每乙個^表示乙個版本
git reset --hard 3628164// 根據日誌id退回到指定版本
git reflog //檢視之前的更改資訊
cat learngit.txt//檢視檔案
git checkout --filename//回退到上一次修改的位置(我使用這個語句的時候很是僵硬不知道為什麼的,所以我最終還是使用最笨的方式去檢視日誌檔案然後再退回去)
rm filename//刪除指定檔案(git比較屌炸天的技術就是就算你刪掉了,也可根據日誌檔案把他給恢復)
Oracle常用語句 持續更新
select from v version select lengthb length from dualto date 2019 12 17 00 00 00 yyyy mm dd hh24 mm ss to date to char sysdate,yyyymm 01 yyyymmdd mont...
總結MySQL常用語句(持續更新)
一 基礎記錄資料 常數列的最大值 select max article as article from shop 獲取某列最大值的行 select from shop where price select max article from shop 按組排列的最大值 select article,m...
MySQL建立表常用語句(持續更新中)
最近因工作需要,開始學習mysql,此文作為學習記錄,以備自己查閱。1.建立表 create table userinfo id int 4 primary key not null auto increment,自增列,如果只此一列,需定為主鍵,否則建立不成功 username varchar 5...