In Git-based collaborative workflows, a fork is a server-side copy of a repository that lives under a developer’s personal namespace on a hosting platform (such as Gitea, GitHub, or GitLab).
While cloning copies a repository to a local machine, forking copies the repository directly on the remote server. This is a fundamental concept in open-source and modern DevOps practices:
This guide outlines the steps to navigate the self-hosted Gitea portal, locate the target upstream repository (sarah/story-blog), perform the fork operation under the user jon, and verify the fork.
sarahstory-blog (URL path: /sarah/story-blog)jonjon/story-blog (URL path: /jon/story-blog)Access the self-hosted Gitea service through your web browser and click on Sign In in the top right corner to log in as the developer jon.

Navigate to the original repository hosted by Sarah at /sarah/story-blog. Verify that you are logged in as jon (visible via the profile icon in the top right) and locate the Fork button on the top right header of the repository view.

Click the Fork button. This opens the New Repository Fork page where you configure the destination:
jon as the destination namespace.story-blog.All branches (or custom branches if specified).Click Fork Repository to run the server-side copy operation.

Once the forking process completes, Gitea redirects you to your new personal repository page at /jon/story-blog.
Confirm that:
jon / story-blog.forked from sarah/story-blog, which acts as a permanent reference back to the original upstream project.
With the fork successfully created, you can now clone the repository locally using your personal developer credentials:
git clone http://3000-port-ldpfesnbuc6nu6zk.labs.kodekloud.com/jon/story-blog.git
You can safely commit modifications and push back to your fork at /jon/story-blog.