Introduction
Getting Started
Explore Public Projects
Create an Account
-
email membership to request an account
wait for the welcome email with your randomly-generated Gitea password
log in to
git.sdf.org using the credentials provided in the welcome email
Create A New Repo
click the “+” in the upper left
choose New Repository
name the repo and provide additional data
decide if this is to be a private or public repo
follow the instructions presented after the action chosen has been completed
on the gitea page for your new project, click the copy button on the other side of the text box that has the options [HTTP] and [SSH]. The text box has the clone address for your new project
back in SDF shell, find a place to keep your gitea projects, and in that folder enter:
git clone <URL>
It will ask you to log in, then it will connect your local folder git with your repo.
Put any files you make for the project in that folder, then:
add them with git add <file>
commit those changes with git commit
push those changes up to your repo with git push
continue!
Migrate An Existing Repo
(e.g., one currently living on GitHub)
click the “+” in the upper left
choose Migrate Repository
in the next screen, provide the repo
URL (e.g.,
GitHub) to migrate over
follow the instructions presented after the action chosen has been completed
Next Steps to Enlightemment