Autogenerated manpages for v2.45.0-rc0-3-g00e10e
[git-manpages.git] / man1 / git-fsmonitor--daemon.1
blobb339e1703ecb144ebdc02d4b2b108e36936ecfa6
1 '\" t
2 .\"     Title: git-fsmonitor--daemon
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-04-22
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.45.0.rc0.3.g00e10ef10e
8 .\"  Language: English
9 .\"
10 .TH "GIT\-FSMONITOR\-\-DAEMON" "1" "2024\-04\-22" "Git 2\&.45\&.0\&.rc0\&.3\&.g00" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-fsmonitor--daemon \- A Built\-in Filesystem Monitor
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit fsmonitor\-\-daemon\fR start
36 \fIgit fsmonitor\-\-daemon\fR run
37 \fIgit fsmonitor\-\-daemon\fR stop
38 \fIgit fsmonitor\-\-daemon\fR status
39 .fi
40 .sp
41 .SH "DESCRIPTION"
42 .sp
43 A daemon to watch the working directory for file and directory changes using platform\-specific filesystem notification facilities\&.
44 .sp
45 This daemon communicates directly with commands like \fBgit status\fR using the \m[blue]\fBsimple IPC\fR\m[]\&\s-2\u[1]\d\s+2 interface instead of the slower \fBgithooks\fR(5) interface\&.
46 .sp
47 This daemon is built into Git so that no third\-party tools are required\&.
48 .SH "OPTIONS"
49 .PP
50 start
51 .RS 4
52 Starts a daemon in the background\&.
53 .RE
54 .PP
55 run
56 .RS 4
57 Runs a daemon in the foreground\&.
58 .RE
59 .PP
60 stop
61 .RS 4
62 Stops the daemon running in the current working directory, if present\&.
63 .RE
64 .PP
65 status
66 .RS 4
67 Exits with zero status if a daemon is watching the current working directory\&.
68 .RE
69 .SH "REMARKS"
70 .sp
71 This daemon is a long running process used to watch a single working directory and maintain a list of the recently changed files and directories\&. Performance of commands such as \fBgit status\fR can be increased if they just ask for a summary of changes to the working directory and can avoid scanning the disk\&.
72 .sp
73 When \fBcore\&.fsmonitor\fR is set to \fBtrue\fR (see \fBgit-config\fR(1)) commands, such as \fBgit status\fR, will ask the daemon for changes and automatically start it (if necessary)\&.
74 .sp
75 For more information see the "File System Monitor" section in \fBgit-update-index\fR(1)\&.
76 .SH "CAVEATS"
77 .sp
78 The fsmonitor daemon does not currently know about submodules and does not know to filter out filesystem events that happen within a submodule\&. If fsmonitor daemon is watching a super repo and a file is modified within the working directory of a submodule, it will report the change (as happening against the super repo)\&. However, the client will properly ignore these extra events, so performance may be affected but it will not cause an incorrect result\&.
79 .sp
80 By default, the fsmonitor daemon refuses to work with network\-mounted repositories; this may be overridden by setting \fBfsmonitor\&.allowRemote\fR to \fBtrue\fR\&. Note, however, that the fsmonitor daemon is not guaranteed to work correctly with all network\-mounted repositories, so such use is considered experimental\&.
81 .sp
82 On Mac OS, the inter\-process communication (IPC) between various Git commands and the fsmonitor daemon is done via a Unix domain socket (UDS) \(em a special type of file \(em which is supported by native Mac OS filesystems, but not on network\-mounted filesystems, NTFS, or FAT32\&. Other filesystems may or may not have the needed support; the fsmonitor daemon is not guaranteed to work with these filesystems and such use is considered experimental\&.
83 .sp
84 By default, the socket is created in the \fB\&.git\fR directory\&. However, if the \fB\&.git\fR directory is on a network\-mounted filesystem, it will instead be created at \fB$HOME/\&.git\-fsmonitor\-*\fR unless \fB$HOME\fR itself is on a network\-mounted filesystem, in which case you must set the configuration variable \fBfsmonitor\&.socketDir\fR to the path of a directory on a Mac OS native filesystem in which to create the socket file\&.
85 .sp
86 If none of the above directories (\fB\&.git\fR, \fB$HOME\fR, or \fBfsmonitor\&.socketDir\fR) is on a native Mac OS file filesystem the fsmonitor daemon will report an error that will cause the daemon and the currently running command to exit\&.
87 .SH "CONFIGURATION"
88 .sp
89 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
90 .PP
91 fsmonitor\&.allowRemote
92 .RS 4
93 By default, the fsmonitor daemon refuses to work with network\-mounted repositories\&. Setting
94 \fBfsmonitor\&.allowRemote\fR
96 \fBtrue\fR
97 overrides this behavior\&. Only respected when
98 \fBcore\&.fsmonitor\fR
99 is set to
100 \fBtrue\fR\&.
103 fsmonitor\&.socketDir
104 .RS 4
105 This Mac OS\-specific option, if set, specifies the directory in which to create the Unix domain socket used for communication between the fsmonitor daemon and various Git commands\&. The directory must reside on a native Mac OS filesystem\&. Only respected when
106 \fBcore\&.fsmonitor\fR
107 is set to
108 \fBtrue\fR\&.
110 .SH "GIT"
112 Part of the \fBgit\fR(1) suite
113 .SH "NOTES"
114 .IP " 1." 4
115 simple IPC
116 .RS 4
117 \%git-htmldocs/technical/api-simple-ipc.html