From patchwork Tue Dec 12 23:18:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 82013 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 5DAEC385DC14 for ; Tue, 12 Dec 2023 23:19:12 +0000 (GMT) X-Original-To: gdb-patches@sourceware.org Delivered-To: gdb-patches@sourceware.org Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) by sourceware.org (Postfix) with ESMTP id D5E7538618BD for ; Tue, 12 Dec 2023 23:18:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org D5E7538618BD Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org D5E7538618BD Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=140.211.166.183 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702423140; cv=none; b=vHnjszXexE626NDpFKhOiUMCkxI9+tA/9iv7ydt2DgKu+eWtGT/GItXk51XXvnafJZ/kCgwFW2ZeYFisgSkweuF6ig6rMr6PuXYV8k5Y1cKlDH7paiB+wVQRSS/fUGT1xcVN7OFQSqGkW8qsLFlDL5GI16exHFagnWkLpvAI/kE= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702423140; c=relaxed/simple; bh=5GMNqh8csEW5CbBrl91QVTmiEWqtMk9dNZENh8kfXiE=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=griXM1smn9F3+0oERlJYufteyFY854HAMHAoxPJm5PAaZljrHC2RO/Jx0epDQGlZkCU9SJ6bjFU8KDl4UvT0lCIjE401vuJ6ox6f8Tn9O8cWaQK19uwLrzcnTU70jkn/ZJVUtU4VIxGANnVhM4b2dlQAettSh5Ez/6ZHok+Ob6s= ARC-Authentication-Results: i=1; server2.sourceware.org Received: by smtp.gentoo.org (Postfix, from userid 559) id 7611E335DC2; Tue, 12 Dec 2023 23:18:58 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH htdocs] current: use tabs for gitconfig settings Date: Tue, 12 Dec 2023 18:18:55 -0500 Message-ID: <20231212231855.23447-1-vapier@gentoo.org> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 X-Spam-Status: No, score=-11.2 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces+patchwork=sourceware.org@sourceware.org Since git itself prefers tabs to indent, use them here too. This makes copy & paste "just work", and people/editors that really wants spaces and never tabs will most likely auto-convert to their preferred indent level. Rendering-wise, it's unchanged as HTML/CSS default to 8-space tab stops. This will allow us to scale the tab size based on the device's size in a follow up change to make it more readable -- raw spaces wouldn't. --- current/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/current/index.html b/current/index.html index 66dc5a82b999..db78d46f9075 100644 --- a/current/index.html +++ b/current/index.html @@ -82,16 +82,16 @@ For example, you might have:
 [remote "origin"]
-        url = https://sourceware.org/git/binutils-gdb.git
-        fetch = +refs/heads/*:refs/remotes/origin/*
+	url = https://sourceware.org/git/binutils-gdb.git
+	fetch = +refs/heads/*:refs/remotes/origin/*
 
And you would edit this to use "ssh:" rather than "https:":
 [remote "origin"]
-        url = ssh://sourceware.org/git/binutils-gdb.git
-        fetch = +refs/heads/*:refs/remotes/origin/*
+	url = ssh://sourceware.org/git/binutils-gdb.git
+	fetch = +refs/heads/*:refs/remotes/origin/*
 
Alternatively, to check out a new read-write copy of the repository,