-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GeanyVC:(Git) Fallback to
git rev-parse
for getting the repo/worktr…
…ee's top directory An example setup for worktree: ``` mkdir r1 cd r1 git init git config user.name testuser git config user.email testuser@ echo "f1" >> f1 git add f1 git commit -a -m "added f1" git worktree add ../w1 -b work1 echo "f1:r1" >> f1 git status cd ../w1 git status echo "f2" >> f2 git add f2 git commit -a -m "added f2" echo "f1:w1" >> f1 git status ``` All VC actions should be available for all files in each worktree.
- Loading branch information
Showing
1 changed file
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters