Android repo 에서 특정 tag 로 변경하는 방법
Android 에서 repo 의 모든 git 을 특정 tag 로 변경하고 싶을 때 사용하는 명령어. repo forall -c git reset --hard $get_tag 아래의 스크립트는 Tag 에서 특정 단어로 된 것 중 n 번째 tag 로 repo 를 변경하는 스크립트이다. 모뎀쪽에 항상 Tag 가 그어져서 Modem git 의 Tag를 참조 하도록 했다. 파일 이름은 getlasttag.sh 로 해서 저장했을 경우이다. #!/bin/bash # start repo sync function startRepo() { Stime=`date +%s` repo forall -c git reset --hard $get_tag Etime=`date +%s` elapsed=`echo "$Etime - $Sti..
Study/GIT
2012. 10. 11. 12:47