|
1 year ago | |
---|---|---|
LICENSE | 2 years ago | |
README.md | 1 year ago |
This is a test repository intended purely for testing and debugging git setup. To test your git setup, you need to follow the steps below:
Try to run the following command:
git clone https://gitea.iitdh.ac.in:443/kabhijit/ScratchPost.git
If you get errors about HTTPS and self-signed certificates you can try:
git -c http.sslVerify=false clone https://gitea.iitdh.ac.in:443/kabhijit/ScratchPost.git
If this command succeeds you should see a "done" message at the end.
$ssh git@gitea.iitdh.ac.in
ssh: connect to host gitea.iitdh.ac.in port 22: Connection refused
then you need to manually specify the port number, i.e.
$ssh -p 2222 git@gitea.iitdh.ac.in
.PTY allocation request failed on channel 0
Hi there, username! You`ve successfully authenticated with the key named sshket-name, but Gitea does not provide shell access.
If this is unexpected, please log in with password and setup Gitea under another user.
Connection to gitea.iitdh.ac.in closed.
# File: ~/.ssh/config
#AddKeysToAgent yes
Host gitea.iitdh.ac.in
Identityfile ~/.ssh/iitdh-gitea
Port 2222
git clone https://gitea.iitdh.ac.in:443/kabhijit/ScratchPost.git
which will let you clone this repo as a test.If git clone has worked, git push should work too. If it does not, it certainly means you do not have write access on the repo you are trying to access. Please don't try to push to this repo, and don't ask for write permissions on this repo.