This repository contains all the Git-tracked documents (that I've found) in the WebRTC standards work.
To check out:
git clone --recursive [email protected]:alvestrand/webrtc-specs.git
To update all specs to the most recent version (this takes some time):
git submodule init
git submodule update --remote
The "init" step is only needed when new repos are added, but does no harm.
NOTE: This will likely leave your submodules in "detached head" state. It will NOT overwrite your not-checked-in-changes, but it will confuse. If you want to push a branch, check it out explicitly.
- mediacapture-main
- webrtc-pc
- webrtc-stats
- mediacapture-output
- mediacapture-image
- mediacapture-fromelement
- mediacapture-worker
- mediacapture-depth
- mediacapture-screen-share
- mediacapture-record
WebRTC demo and tools pages:
I expect to do this myself; the important info is only what specs exist and which branch for each is worth tracking. Keeping up to date can be done by everyone who clones this.
If you have new specs to add, send me a pull request.
To add a spec:
git submodule add [email protected]:<user>/<repo> <local dir for repo>
To specify which branch is tracked by "submodule update":
git config -f .gitmodules submodule.<spec-directory>.branch <branch name>
To change the repository tracked by a branch:
- edit .gitmodules to change the URL
- rm -rf the old repo (just resyncing does NOT overwrite the .git config)
- git submodule sync
- git submodule update --remote
To push updates on which version is the latest:
git push
Enjoy!