From 8bc6b1f1bbd40e8457ca62011d9fb18dabcfc6f6 Mon Sep 17 00:00:00 2001 From: Michael Anckaert Date: Wed, 3 Feb 2021 21:16:08 +0100 Subject: Fix example command on how to setup a repository This patch fixes an inconsistency on the tutorial that might confuse new users. The explanation on how to setup a repository refers to changing the string 'username' in the git remote command. The example command however displays the username 'rvoid', apparantly the original author of the tutorial. --- tutorials/set-up-account-and-git.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/set-up-account-and-git.md b/tutorials/set-up-account-and-git.md index 030b48b..ae8c131 100644 --- a/tutorials/set-up-account-and-git.md +++ b/tutorials/set-up-account-and-git.md @@ -67,7 +67,7 @@ created the initial commit. The following commands will add a "remote" to your local git repository, which will allow you to push changes to a remote repository on git.sr.ht. - git remote add origin git@git.sr.ht:~{{{srht_username}}}/example + git remote add origin git@git.sr.ht:~username/example Make sure to replace `username` with your own. Then this command will push your master branch to git.sr.ht: -- cgit