關於常用git、repo的一些總結:
git rev-parse --git-dir:
git init :初始化git。
git status :檢視更改檔案。
git diff:檢視更改的具體內容。
git branch:檢視git分支。
git checkout:建立分支、切換分支。
git stash:儲存更改到暫存區。git stash pop:恢復更改。
git add:提交到暫存區
git add -amend:接著上筆提交的修改
repo upload
repo start *** --all
關於Spring Data Rest的一些總結
最近一直在開發一些基於 spring data rest 的專案。在此過程中,隨著開發工作的不斷深入,對 spring data rest 的了解也越來越深。享受著 spring data rest 帶來的便捷,也忍受著它帶來的不便。spring data rest 的目標是提供堅實的基礎,從而使用...
dp基礎 關於LIS LCS LCIS 的一些總結
lis 最長遞增子串行 dp思路 dp i 為0到第i項的最長遞增子串行長度。dp i max dp j 1 a j a i dp 0 a 0 for int i 1 i n i 二分優化 if a i dp tot1 else 注意 dp i 儲存的是長度為i時最長遞增子串行的最小結尾。陣列整個儲...
JavaScript 用到的一些常用方法總結
1 判斷兩個物件是否相等 different obj1,obj2 if object.keys obj1 length object.keys obj2 length for var attr in obj1 else if obj1 attr obj2 attr return true 2 複製乙...