Variable: org-attach-git-dir
org-attach-git-dir is a customizable variable defined in
org-attach-git.el.gz.
Value
default
Documentation
Attachment directory with the Git repository to use.
The default value is to use org-attach-id-dir. When set to
individual-repository, then the directory attached to the
current node, if correctly initialized as a Git repository, will
be used instead.
This variable was added, or its default value changed, in Org version
9.5.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-attach-git.el.gz
(defcustom org-attach-git-dir 'default
"Attachment directory with the Git repository to use.
The default value is to use `org-attach-id-dir'. When set to
`individual-repository', then the directory attached to the
current node, if correctly initialized as a Git repository, will
be used instead."
:group 'org-attach
:package-version '(Org . "9.5")
:type '(choice
(const :tag "Default" default)
(const :tag "Individual repository" individual-repository)))