Autogenerated manpages for v2.42.0-424-gceadf0
[git-manpages.git] / man1 / git-for-each-repo.1
blob39641045414b36ba16883f13a4a17e11f0daa9d2
1 '\" t
2 .\"     Title: git-for-each-repo
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: 2023-10-20
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.42.0.424.gceadf0f3cf
8 .\"  Language: English
9 .\"
10 .TH "GIT\-FOR\-EACH\-REPO" "1" "2023\-10\-20" "Git 2\&.42\&.0\&.424\&.gceadf0" "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-for-each-repo \- Run a Git command on a list of repositories
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit for\-each\-repo\fR \-\-config=<config> [\-\-] <arguments>
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Run a Git command on a list of repositories\&. The arguments after the known options or \fB\-\-\fR indicator are used as the arguments for the Git subprocess\&.
41 .sp
42 THIS COMMAND IS EXPERIMENTAL\&. THE BEHAVIOR MAY CHANGE\&.
43 .sp
44 For example, we could run maintenance on each of a list of repositories stored in a \fBmaintenance\&.repo\fR config variable using
45 .sp
46 .if n \{\
47 .RS 4
48 .\}
49 .nf
50 git for\-each\-repo \-\-config=maintenance\&.repo maintenance run
51 .fi
52 .if n \{\
53 .RE
54 .\}
55 .sp
56 .sp
57 This will run \fBgit \-C <repo> maintenance run\fR for each value \fB<repo>\fR in the multi\-valued config variable \fBmaintenance\&.repo\fR\&.
58 .SH "OPTIONS"
59 .PP
60 \-\-config=<config>
61 .RS 4
62 Use the given config variable as a multi\-valued list storing absolute path names\&. Iterate on that list of paths to run the given arguments\&.
63 .sp
64 These config values are loaded from system, global, and local Git config, as available\&. If
65 \fBgit for\-each\-repo\fR
66 is run in a directory that is not a Git repository, then only the system and global config is used\&.
67 .RE
68 .SH "SUBPROCESS BEHAVIOR"
69 .sp
70 If any \fBgit \-C <repo> <arguments>\fR subprocess returns a non\-zero exit code, then the \fBgit for\-each\-repo\fR process returns that exit code without running more subprocesses\&.
71 .sp
72 Each \fBgit \-C <repo> <arguments>\fR subprocess inherits the standard file descriptors \fBstdin\fR, \fBstdout\fR, and \fBstderr\fR\&.
73 .SH "GIT"
74 .sp
75 Part of the \fBgit\fR(1) suite