mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
769711394e
`add` behaves the same as before. `rm` removes worktrees. `git worktree remove` on the gst-build worktree will delete the subproject worktrees inside it, but will not remove the references to them in the main repository's subproject worktrees. The `rm` command will.
10 lines
142 B
Bash
Executable file
10 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd `dirname $0`
|
|
|
|
case "$MSYSTEM" in
|
|
*MINGW*) PYTHON="py -3";;
|
|
*) PYTHON="python3";;
|
|
esac
|
|
|
|
$PYTHON gst-worktree.py add "$@"
|