Lines Matching refs:git
46 git clone --depth 1 https://git.savannah.nongnu.org/git/lwip.git -b $(WITH_LWIP_BRANCH)
47 (cd lwip ; git checkout $(WITH_LWIP_BRANCH))
51 git clone --depth 1 https://git.savannah.nongnu.org/git/lwip/lwip-contrib.git -b $(WITH_LWIP_CONTRIB_BRANCH)
52 (cd lwip-contrib ; git checkout $(WITH_LWIP_CONTRIB_BRANCH))
58 TAG=`git describe --tags --all`; \
70 TAG=`git describe --tags`; \
81 # base libcoap git has empty ext/tinydtls
85 (cd $(libcoap_dir)/ext ; git clone https://github.com/eclipse/tinydtls.git) ; \
86 (cd $(libcoap_dir)/ext/tinydtls ; git checkout ${WITH_TINYDTLS_BRANCH}) ; \
89 IN_GIT=`git rev-parse --is-inside-work-tree` ; \
91 (cd $(libcoap_dir) ; git submodule init ; git submodule update) ; \
93 (cd $(libcoap_dir)/ext ; git clone https://github.com/eclipse/tinydtls.git) ; \
94 (cd $(libcoap_dir)/ext/tinydtls ; git checkout ${WITH_TINYDTLS_BRANCH}) ; \
100 IN_GIT=`git rev-parse --is-inside-work-tree` ; \
103 cd $(libcoap_dir) ; TAG=`git ls-tree HEAD ext/tinydtls | cut -d\ -f3 | cut -f1` ;\