Logging In
Your MokoGitea account is created by your Moko Consulting administrator. To log in:
- Navigate to your MokoGitea instance URL (provided by your administrator).
- Enter your username and password.
- Click Sign In.
If you've forgotten your password, use the Forgot Password link on the login page, or contact your administrator.
The Dashboard
After logging in, you'll see your Dashboard, which shows:
- Activity Feed — Recent actions from repositories you follow or contribute to.
- Your Repositories — Quick access to repos you own or have been added to.
- Organizations — Teams and groups you belong to.
Setting Up Your Profile
- Click your avatar in the top-right corner and select Settings.
- Update your display name, bio, and avatar.
- Optionally add your website and location.
- Click Update Profile to save.
Creating Your First Repository
- Click the + icon in the top navigation bar and select New Repository.
- Enter a Repository Name (e.g.,
my-first-project). - Add an optional Description.
- Choose Private or Public visibility.
- Check Initialize this repository to create it with a README file.
- Click Create Repository.
Cloning Your Repository Locally
Once your repository is created, clone it to your local machine:
git clone https://your-mokogitea-url/username/my-first-project.git
cd my-first-project
You can also use SSH if you've set up SSH keys.
Making Your First Commit
- Create or edit a file in your cloned repository.
- Stage and commit your changes:
git add . git commit -m "My first commit" - Push to MokoGitea:
git push origin main
Refresh your repository page in MokoGitea to see your changes.