Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/339.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/git/20.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
git checkout |教程(JAVA)版本|_Java_Git - Fatal编程技术网

git checkout |教程(JAVA)版本|

git checkout |教程(JAVA)版本|,java,git,Java,Git,我遵循一个教程来构建一个基于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\u JAVA\u VERSION?TUTORIAL\u JAVA\u

我遵循一个教程来构建一个基于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\u JAVA\u VERSION?TUTORIAL\u JAVA\u VERSION是您从Git repo中提取的分支或标记的名称

看看Github中的回购协议,没有一个分支或标记称为此

我会联系创建本教程的人,询问您应该使用哪个分支/标记。

您应该使用
6.1.0
6.1.0
使用git
标记
):

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