hi > have you any idea how I can download all the source code from the GIT
I use one-liner as follows. You need to install "curl" "git-core" before you use this. ( mkdir tizen_src; cd tizen_src ) curl -s https://review.tizen.org/git/?a=project_index | awk '{ \ path="`dirname "$0"`"; gitdir=substr($0,0,index($0, ".git")-1); print \ "if [ -d "gitdir" ]; then"; print " cd "gitdir; print " git pull"; \ print "else"; print " mkdir -p "path; print " cd "path; print " git \ clone git://review.tizen.org/"$0; print "fi"; print "cd -"; }' | sh This one-liner do git clone all sources of tizen from review.tizen.org if you don't have that, otherwise do git pull to update sources. Best Regards, 2012/8/3 Imen ABBES <[email protected]>: > hi all, > > have you any idea how I can download all the source code from the GIT > > thanks. > > Best Regards, > > -- > ABBES Imen > > > _______________________________________________ > General mailing list > [email protected] > https://lists.tizen.org/listinfo/general > _______________________________________________ General mailing list [email protected] https://lists.tizen.org/listinfo/general
