diff options
author | Michael Anckaert <michael.anckaert@sinax.be> | 2021-02-03 21:16:08 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2021-02-03 15:16:08 -0500 |
commit | 8bc6b1f1bbd40e8457ca62011d9fb18dabcfc6f6 (patch) | |
tree | 27e34a10a642782667729585ccd59594e05e081e /tutorials | |
parent | 2c0eba8656892d2d00dc569c96e7a556f2fe9688 (diff) | |
download | sr.ht-docs-8bc6b1f1bbd40e8457ca62011d9fb18dabcfc6f6.tar.gz |
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.
Diffstat (limited to 'tutorials')
-rw-r--r-- | tutorials/set-up-account-and-git.md | 2 |
1 files changed, 1 insertions, 1 deletions
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: |