Skip to content

Commit 3c9f0df

Browse files
committed
Merge branch 'jk/multi-line-indent-style-fix'
Style fix. * jk/multi-line-indent-style-fix: style: indent multiline "if" conditions to align
2 parents a5e74b4 + 08e9df2 commit 3c9f0df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

remote.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ static int handle_config(const char *key, const char *value, void *cb)
355355
remote = make_remote(name, namelen);
356356
remote->origin = REMOTE_CONFIG;
357357
if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
358-
current_config_scope() == CONFIG_SCOPE_WORKTREE)
358+
current_config_scope() == CONFIG_SCOPE_WORKTREE)
359359
remote->configured_in_repo = 1;
360360
if (!strcmp(subkey, "mirror"))
361361
remote->mirror = git_config_bool(key, value);

upload-pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ static int upload_pack_config(const char *var, const char *value, void *cb_data)
13241324
}
13251325

13261326
if (current_config_scope() != CONFIG_SCOPE_LOCAL &&
1327-
current_config_scope() != CONFIG_SCOPE_WORKTREE) {
1327+
current_config_scope() != CONFIG_SCOPE_WORKTREE) {
13281328
if (!strcmp("uploadpack.packobjectshook", var))
13291329
return git_config_string(&data->pack_objects_hook, var, value);
13301330
}

0 commit comments

Comments
 (0)