Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-12-14 21:21:38 +0300
committerJunio C Hamano <gitster@pobox.com>2020-12-14 21:21:38 +0300
commit3c9f0df16a20071aa6810152dd7f4003f3d96c4b (patch)
treea6f870082686ba67f103da752cc8a8e932c7d8f7 /remote.c
parenta5e74b4baaf17ea069fa451c405ef219eb61ee7a (diff)
parent08e9df2395b1116ffe932eaedbc3c89676902362 (diff)
Merge branch 'jk/multi-line-indent-style-fix'
Style fix. * jk/multi-line-indent-style-fix: style: indent multiline "if" conditions to align
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.c b/remote.c
index 8a6dbbb903..8b9d090ae5 100644
--- a/remote.c
+++ b/remote.c
@@ -355,7 +355,7 @@ static int handle_config(const char *key, const char *value, void *cb)
remote = make_remote(name, namelen);
remote->origin = REMOTE_CONFIG;
if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
- current_config_scope() == CONFIG_SCOPE_WORKTREE)
+ current_config_scope() == CONFIG_SCOPE_WORKTREE)
remote->configured_in_repo = 1;
if (!strcmp(subkey, "mirror"))
remote->mirror = git_config_bool(key, value);