Browse Source
Some basic information about git submodule: * by default the submodules are not clone * by default the url for the submodules are git:// and not ssh://, the developpers must change this (just uncomment the right line in .gitmodules) to be able to commit to the bindings. Git commandes: * git submodule init => intialize the submodules * git submodule status => status of the submodules * git submodule update => update all submodulespull/2/head
5 changed files with 20 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
[submodule "bindings/libvlcpp"] |
|||
path = bindings/libvlcpp |
|||
url = git://git.videolan.org/vlc/bindings/libvlcpp.git |
|||
# url = git@git.videolan.org:vlc/bindings/libvlcpp.git |
|||
[submodule "bindings/jvlc"] |
|||
path = bindings/jvlc |
|||
url = git://git.videolan.org/vlc/bindings/jvlc.git |
|||
# url = git@git.videolan.org:vlc/bindings/jvlc.git |
|||
[submodule "bindings/python"] |
|||
path = bindings/python |
|||
url = git://git.videolan.org/vlc/bindings/python.git |
|||
# url = git@git.videolan.org:vlc/bindings/python.git |
|||
[submodule "bindings/phonon"] |
|||
path = bindings/phonon |
|||
url = git://git.videolan.org/vlc/bindings/phonon.git |
|||
# url = git@git.videolan.org:vlc/bindings/phonon.git |
|||
Loading…
Reference in new issue