码迷,mamicode.com
首页 > 其他好文 > 详细

如何用repo强制和远程代码同步

时间:2014-11-25 11:04:27      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:des   android   http   io   ar   os   使用   for   on   

Android ROM开发经常使用repo sync。有时候有些project因为调试的原因做了一些改动,sync下来就和远程不同步了。
参考了repo的代码(.repo/repo/subcmds/sync.py)里有个参数:

p.add_option(‘-d‘, ‘--detach‘,
             dest=‘detach_head‘, action=‘store_true‘,
             help=‘detach projects back to manifest revision‘)

repo sync -d会将HEAD强制指向manifest的库,而忽略本地的改动。

所以比较安全的做法是
先确认本地改动没必要保存了,确认之前不妨用分支备份一下(git checkout -b backup_branch; git add -u; git commit)
或者用笨办法,直接用cp备份一下,然后:

repo sync -d
repo forall -c ‘git reset --hard‘    # Remove all working directory (and staged) changes.
repo forall -c ‘git clean -f -d‘     # Clean untracked files

这样,本地代码和远程服务器的代码就完全一致了

参考链接:usage for “repo sync -d” in Android source repository

如何用repo强制和远程代码同步

标签:des   android   http   io   ar   os   使用   for   on   

原文地址:http://my.oschina.net/caohong/blog/348407

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!