270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
-
-
+
+
|
** depends on the global setting, or the operating system default, if not set.
**
** Options:
**
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles include files beginning with a dot (".")
** -f|--force Add files without prompting
** --ignore <CSG> Ignore files matching patterns from the
** comma separated list of glob patterns.
** --ignore <CSG> Ignore unmanaged files matching patterns from
** the comma separated list of glob patterns.
** --clean <CSG> Also ignore files matching patterns from
** the comma separated list of glob patterns.
** --no-dir-symlinks Disables support for directory symlinks.
**
** See also: addremove, rm
*/
void add_cmd(void){
|
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
|
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
|
-
-
+
+
|
** anything.
**
** This command can be used to track third party software.
**
** Options:
** --case-sensitive <BOOL> Override the case-sensitive setting.
** --dotfiles Include files beginning with a dot (".")
** --ignore <CSG> Ignore files matching patterns from the
** comma separated list of glob patterns.
** --ignore <CSG> Ignore unmanaged files matching patterns from
** the comma separated list of glob patterns.
** --clean <CSG> Also ignore files matching patterns from
** the comma separated list of glob patterns.
** -n|--dry-run If given, display instead of run actions.
** --no-dir-symlinks Disables support for directory symlinks.
**
** See also: add, rm
*/
|