我正在学习基于Kurento(WebRTC媒体服务器)构建应用程序的教程。在某处写道:
git clone https://github.com/Kurento/kurento-tutorial-java.git
cd kurento-tutorial-java/kurento-hello-world
git checkout |TUTORIAL_JAVA_VERSION|
我怎么知道最后一行代码中的TUTORIAL_JAVA_VERSION?
答案 0 :(得分:1)
TUTORIAL_JAVA_VERSION将是您从Git回购中删除的分支或标记的名称。
看看Github的回购,没有分支或标签这个。
我会联系创建教程的人,并询问您应该使用的分支/标记。
答案 1 :(得分:1)
从tutorial-1-helloworld.html开始,您应该使用6.1.0
(6.1.0
使用git tag
):
git clone https://github.com/Kurento/kurento-tutorial-java.git
cd kurento-tutorial-java/kurento-hello-world
git checkout 6.1.0
mvn compile exec:java