Example #1
0
 def __init__(self, monitor):
     _BaseThread.__init__(self, monitor)
     self._worktree = self._transform_path(core.abspath(git.worktree()))
     self._worktree_watch = None
     self._git_dir = self._transform_path(core.abspath(git.git_dir()))
     self._git_dir_watch = None
     self._stop_event_lock = Lock()
     self._stop_event = None
Example #2
0
 def __init__(self, monitor):
     _BaseThread.__init__(self, monitor)
     self._worktree = self._transform_path(core.abspath(git.worktree()))
     self._worktree_watch = None
     self._git_dir = self._transform_path(core.abspath(git.git_dir()))
     self._git_dir_watch = None
     self._stop_event_lock = Lock()
     self._stop_event = None
Example #3
0
 def __init__(self, monitor):
     _BaseThread.__init__(self, monitor)
     self._worktree = core.abspath(git.worktree())
     self._git_dir = git.git_dir()
     self._lock = Lock()
     self._inotify_fd = None
     self._pipe_r = None
     self._pipe_w = None
     self._worktree_wds = set()
     self._worktree_wd_map = {}
     self._git_dir_wds = set()
     self._git_dir_wd_map = {}
Example #4
0
 def __init__(self, monitor):
     _BaseThread.__init__(self, monitor)
     self._worktree = core.abspath(git.worktree())
     self._git_dir = git.git_dir()
     self._lock = Lock()
     self._inotify_fd = None
     self._pipe_r = None
     self._pipe_w = None
     self._worktree_wds = set()
     self._worktree_wd_map = {}
     self._git_dir_wds = set()
     self._git_dir_wd_map = {}
Example #5
0
 def __init__(self, monitor, refs_only):
     _BaseThread.__init__(self, monitor, refs_only)
     if refs_only:
         worktree = None
     else:
         worktree = git.worktree()
         if worktree is not None:
             worktree = self._transform_path(core.abspath(worktree))
     self._worktree = worktree
     self._worktree_watch = None
     self._git_dir = self._transform_path(core.abspath(git.git_path()))
     self._git_dir_watch = None
     self._stop_event_lock = Lock()
     self._stop_event = None
Example #6
0
 def __init__(self, monitor, refs_only):
     _BaseThread.__init__(self, monitor, refs_only)
     if refs_only:
         worktree = None
     else:
         worktree = git.worktree()
         if worktree is not None:
             worktree = self._transform_path(core.abspath(worktree))
     self._worktree = worktree
     self._worktree_watch = None
     self._git_dir = self._transform_path(core.abspath(git.git_path()))
     self._git_dir_watch = None
     self._stop_event_lock = Lock()
     self._stop_event = None
Example #7
0
 def __init__(self, monitor, refs_only):
     _BaseThread.__init__(self, monitor, refs_only)
     if refs_only:
         worktree = None
     else:
         worktree = git.worktree()
         if worktree is not None:
             worktree = core.abspath(worktree)
     self._worktree = worktree
     self._git_dir = git.git_path()
     self._lock = Lock()
     self._inotify_fd = None
     self._pipe_r = None
     self._pipe_w = None
     self._worktree_wds = set()
     self._worktree_wd_map = {}
     self._git_dir_wds = set()
     self._git_dir_wd_map = {}
     self._git_dir_wd = None
Example #8
0
 def __init__(self, monitor, refs_only):
     _BaseThread.__init__(self, monitor, refs_only)
     if refs_only:
         worktree = None
     else:
         worktree = git.worktree()
         if worktree is not None:
             worktree = core.abspath(worktree)
     self._worktree = worktree
     self._git_dir = git.git_path()
     self._lock = Lock()
     self._inotify_fd = None
     self._pipe_r = None
     self._pipe_w = None
     self._worktree_wds = set()
     self._worktree_wd_map = {}
     self._git_dir_wds = set()
     self._git_dir_wd_map = {}
     self._git_dir_wd = None