Quantcast
Channel: patch –易春木
Browsing latest articles
Browse All 5 View Live

Image may be NSFW.
Clik here to view.

Repo/Git 使用手冊, android開發圖說如何使用指令

安裝repo 參考:http://source.android.com/source/downloading.html 1. To install Repo: Make sure you have a bin/ directory in your home directory and that it is included in your path: $ mkdir ~/bin $...

View Article


git 製作patch檔 然後merge

1. 先查好你要從哪個commit開始產生patch 記下該commit ID (即下方 START_COMIT_NUM) 2. 產生patch 會從START_COMIT_NUM 開始產生 若想限制patch數量請看 http://eeepage.info/git-format-patch-num/ git format-patch START_COMIT_NUM 3.清除之前的訊息 git am...

View Article


git format-patch 可以限定個數

git format-patch 預設會從某個commit開始 一路依照commit作出n所有patch檔案 但是有可能你只想要產生該commit的patch2,其實很簡單 後面加個-1就可以啦 git format-patch xxxxxxxxxxxxx -1 如果你要該commit往後的兩個commit的patches 就改成-2 git format-patch xxxxxxxxxxxxx -2

View Article

拿到git patch要怎麼用一般patch指令merge?

如果你的codebase工作環境沒有使用git作管理, 你要怎麼做從git產生的patch呢? 首先要先知道diff 與 patch 的關係, 傳統的linux裡面, .patch檔案是透過diff產生的 Diff 和 Patch 的簡易操作使用筆記:(參考: Tsung’s Blog) diff -Naur file1 file2 > project.patch # Diff 產生...

View Article

Windows平台 – BAT批次次指令: SET 的功能介紹

‧SET :顯示、設定或移除 cmd.exe 環境變數。 ‧指令詳解: SET [variable=[string]] variable 指定環境變數名稱。 string 指定設定給變數的一系列字元。 僅輸入 SET 而不加上任何參數,可以顯示目前的環境變數。 如果您啟動了擴充指令,SET 指令有以下的改變: 如果執列 SET 指令而且只推演變數名稱,沒有等號或數值的話,指令會顯示出全部字首符合...

View Article

Browsing latest articles
Browse All 5 View Live