We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I attempted to add the submodule per the read me:
git submodule add Submodules/FFmpegWrapper https://github.com/OpenWatch/FFmpegWrapper.git
However, that yielded this error:
repo URL: 'Submodules/FFmpegWrapper' must be absolute or begin with ./|../
Instead, I was able to do:
cd <mymodule_dir> mkdir Submodules git submodule add https://github.com/OpenWatch/FFmpegWrapper.git Submodules/FFmpegWrapper
I'm using git version 1.8.1.
The text was updated successfully, but these errors were encountered:
you need to write like this: git submodule add https://github.com/OpenWatch/FFmpegWrapper.git Submodules/FFmpegWrapper
git submodule add https://github.com/OpenWatch/FFmpegWrapper.git Submodules/FFmpegWrapper
Sorry, something went wrong.
@mmehdi yep, that is what I ended up doing (not sure if you saw, I had noted that in my OP)
No branches or pull requests
I attempted to add the submodule per the read me:
git submodule add Submodules/FFmpegWrapper https://github.com/OpenWatch/FFmpegWrapper.git
However, that yielded this error:
repo URL: 'Submodules/FFmpegWrapper' must be absolute or begin with ./|../
Instead, I was able to do:
I'm using git version 1.8.1.
The text was updated successfully, but these errors were encountered: