Merge changes from shortcut tag to git branch
1 answer
Yes, create a snapshot view with a configuration option selecting this label.
Then from your seperate git working tree folder do
git --work-tree=path/to/snapshot/view add .
# or, to limit files added:
git --work-tree=path/to/snapshot/view add -- afile
git --work-tree=path/to/snapshot/view add -- a folder
This will instruct git to add file changes from the snapshot view.
+1
source to share