summaryrefslogtreecommitdiff
path: root/gst-worktree.py
AgeCommit message (Collapse)AuthorFilesLines
2021-08-27Use the default formatting for git show in case the user has set a pretty formatJay Douglass1-1/+1
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/258>
2020-10-07gst-worktree: add support for wrap file without 'directory' fieldGuillaume Desmottes1-1/+3
The script is currently not usable because of pango.wrap not having the 'directory' field and relying on the default from the file name. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/201>
2020-02-02gst-worktree.py: Add execution permissionNicolas Dufresne1-0/+0
This allow doing ./gst-worktree.py directly.
2020-01-31gst-worktree: Allow creating a new branchNicolas Dufresne1-5/+9
This is useful when you want to create a worktree from let's say master branch and start a new branch. This basically reproduce git-worktree -b options.
2019-11-24gst-worktree: Add sub-commands: add and rmNirbheek Chauhan1-11/+64
`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.
2019-11-24Move checkout-branch-worktree to gst-worktree.pyNirbheek Chauhan1-0/+102
We will add more actions to it than just 'checkout'. Also add a wrapper shell script that calls gst-worktree.py with the correct arguments.