
版本和配置管理
hzpeterchen
hzpeterchen@gmail.com
cn.linkedin.com/in/hzpeterchen/
展开
-
用git管理android patch
在kernelnewbies@nl.linux.org 问的问题, xiangfu@sharism.cc 给我的如下答复:1. since the kernel use "git". you can use different branch to maintain the kernel. then cherry-pick to your local upstream branch转载 2010-02-24 09:56:00 · 969 阅读 · 0 评论 -
svn使用技巧
1. Add obj file: add flag --no-ignore 2. delete the .svnfind . -name .svn -type d -print | xargs rm -fr 3. How to rollback to old svn versionsvn merge -rHEAD:144 URL/xxx.c xxx.c 4. ho原创 2010-02-24 10:04:00 · 390 阅读 · 0 评论 -
git usage
# set your name: git config --gloabal user.name "your name"git config --global user.email "your_email@gmail.com"#download the git code basegit clone url //clean non-git manage原创 2010-02-26 09:21:00 · 602 阅读 · 0 评论