2015-12-02 85 views
-2

我正在按照教程構建基於Kurento(WebRTC媒體服務器)的應用程序。寫在某處:git checkout | TUTORIAL_JAVA_VERSION |

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?

回答

1

tutorial-1-helloworld.html你應該使用6.1.06.1.0 beeing一個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 
1

TUTORIAL_JAVA_VERSION將是您從Git倉庫中取出的分支或標籤的名稱。

看看Github的回購,沒有分支或標籤叫做這個。

我會聯繫誰創建教程,並詢問你應該使用什麼分支/標籤。

+1

'6.1.0'它是一個標籤 – dan