1. add obj file: add flag --no-ignore
2. delete the .svn
find . -name .svn -type d -print | xargs rm -fr
3. how to rollback to old svn version
svn merge -rhead:144 url/***.c ***.c
4. how to merge develop line to main line
svn merge -r144:head url(work copy) : merge specific version (or newest version) to current work copy
follow below setups:
i: 使develop 和 main 都更新到最新 --- svn up
ii: 在main line裡輸入上面的命令, 其中 r144為develop line branch出去的時候的版本號
SVN使用小技巧
首次使用svn工具是使用的versions,相對來說對versions使用比較多。記錄一下之前使用svn使用過程中遇到的問題和解決方案 1.使用svn同步開發造成衝突的問題 在同步開發的工程中要保證協同者不對同乙個檔案進行修改,首先進行介面的分配,盡量做到介面不交叉,這樣各自容易管理 但是也會有特殊...
Linux下SVN使用技巧
檔案衝突的處理 svn update conflict discovered in readme.txt select p postpone,df diff full,e edit,mc mine conflict,tc theris conflict,s show all options post...
xcode 使用技巧分享 svn 相關
利用 xcode 檢視 svn上 兩個 版本 之間的 差異 直接 上圖 1 選中你想檢視的 檔案 2 選擇 右上角的 comparison 按鈕 這樣你就可以看 到 本地的 左側 與 svn 上 最新 版本 右側 之間的 差異 如果你想看 本地 與 svn 上 其他 版本 之間的差異 或者 想看 s...