mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] Documentation: user: use https instead of git protocol for cloning
@ 2025-06-10  9:27 Bastian Krause
  2025-06-10 11:54 ` Ahmad Fatoum
  2025-06-10 15:03 ` Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Bastian Krause @ 2025-06-10  9:27 UTC (permalink / raw)
  To: barebox; +Cc: Bastian Krause

The git server at git.pengutronix.de no longer supports the git
protocol, so switch to https.

Signed-off-by: Bastian Krause <bst@pengutronix.de>
---
 Documentation/user/barebox.rst | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Documentation/user/barebox.rst b/Documentation/user/barebox.rst
index 338c2f5d03c..8b3a29fc1c0 100644
--- a/Documentation/user/barebox.rst
+++ b/Documentation/user/barebox.rst
@@ -18,15 +18,15 @@ can be checked out as follows:
 
 .. code-block:: sh
 
-  $ git clone git://git.pengutronix.de/git/barebox.git
+  $ git clone https://git.pengutronix.de/git/barebox
   Cloning into 'barebox'...
-  remote: Counting objects: 113356, done.
-  remote: Compressing objects: 100% (25177/25177), done.
-  remote: Total 113356 (delta 87910), reused 111155 (delta 85935)
-  Receiving objects: 100% (113356/113356), 33.13 MiB | 183.00 KiB/s, done.
-  Resolving deltas: 100% (87910/87910), done.
-  Checking connectivity... done.
-  Checking out files: 100% (5651/5651), done.
+  remote: Enumerating objects: 330649, done.
+  remote: Counting objects: 100% (3932/3932), done.
+  remote: Compressing objects: 100% (2203/2203), done.
+  remote: Total 330649 (delta 2421), reused 2217 (delta 1706), pack-reused 326717
+  Receiving objects: 100% (330649/330649), 82.03 MiB | 14.88 MiB/s, done.
+  Resolving deltas: 100% (265076/265076), done.
+  Updating files: 100% (19054/19054), done.
 
 By default, the master branch is checked out. If you want to develop for
 barebox, this is the right branch to send patches against.
-- 
2.39.5




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Documentation: user: use https instead of git protocol for cloning
  2025-06-10  9:27 [PATCH] Documentation: user: use https instead of git protocol for cloning Bastian Krause
@ 2025-06-10 11:54 ` Ahmad Fatoum
  2025-06-10 15:03 ` Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Ahmad Fatoum @ 2025-06-10 11:54 UTC (permalink / raw)
  To: Bastian Krause, barebox

Hello Bastian,

On 6/10/25 11:27, Bastian Krause wrote:
> The git server at git.pengutronix.de no longer supports the git
> protocol, so switch to https.
> 
> Signed-off-by: Bastian Krause <bst@pengutronix.de>

Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de>

Alternatively, we could also mention

  ssh://public@git.pengutronix.de/barebox

But I don't have a preference either way.

Thanks,
Ahmad

> ---
>  Documentation/user/barebox.rst | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/Documentation/user/barebox.rst b/Documentation/user/barebox.rst
> index 338c2f5d03c..8b3a29fc1c0 100644
> --- a/Documentation/user/barebox.rst
> +++ b/Documentation/user/barebox.rst
> @@ -18,15 +18,15 @@ can be checked out as follows:
>  
>  .. code-block:: sh
>  
> -  $ git clone git://git.pengutronix.de/git/barebox.git
> +  $ git clone https://git.pengutronix.de/git/barebox
>    Cloning into 'barebox'...
> -  remote: Counting objects: 113356, done.
> -  remote: Compressing objects: 100% (25177/25177), done.
> -  remote: Total 113356 (delta 87910), reused 111155 (delta 85935)
> -  Receiving objects: 100% (113356/113356), 33.13 MiB | 183.00 KiB/s, done.
> -  Resolving deltas: 100% (87910/87910), done.
> -  Checking connectivity... done.
> -  Checking out files: 100% (5651/5651), done.
> +  remote: Enumerating objects: 330649, done.
> +  remote: Counting objects: 100% (3932/3932), done.
> +  remote: Compressing objects: 100% (2203/2203), done.
> +  remote: Total 330649 (delta 2421), reused 2217 (delta 1706), pack-reused 326717
> +  Receiving objects: 100% (330649/330649), 82.03 MiB | 14.88 MiB/s, done.
> +  Resolving deltas: 100% (265076/265076), done.
> +  Updating files: 100% (19054/19054), done.
>  
>  By default, the master branch is checked out. If you want to develop for
>  barebox, this is the right branch to send patches against.

-- 
Pengutronix e.K.                  |                             |
Steuerwalder Str. 21              | http://www.pengutronix.de/  |
31137 Hildesheim, Germany         | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686  | Fax:   +49-5121-206917-5555 |




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Documentation: user: use https instead of git protocol for cloning
  2025-06-10  9:27 [PATCH] Documentation: user: use https instead of git protocol for cloning Bastian Krause
  2025-06-10 11:54 ` Ahmad Fatoum
@ 2025-06-10 15:03 ` Sascha Hauer
  1 sibling, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2025-06-10 15:03 UTC (permalink / raw)
  To: barebox, Bastian Krause


On Tue, 10 Jun 2025 11:27:18 +0200, Bastian Krause wrote:
> The git server at git.pengutronix.de no longer supports the git
> protocol, so switch to https.
> 
> 

Applied, thanks!

[1/1] Documentation: user: use https instead of git protocol for cloning
      https://git.pengutronix.de/cgit/barebox/commit/?id=49f926ceb830 (link may not be stable)

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-06-10 18:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-10  9:27 [PATCH] Documentation: user: use https instead of git protocol for cloning Bastian Krause
2025-06-10 11:54 ` Ahmad Fatoum
2025-06-10 15:03 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox