Project113

Your First Repository

Learn how to create a repository and push your code to Project113.

Creating a Repository

  1. Navigate to your repository dashboard.
  2. Click Create Repository.
  3. Enter a name and optional description for your repository.
  4. Choose visibility: Public (anyone can see it) or Private (only invited members can access).
  5. Click Create to finish.

Push-to-Create

You can skip the web interface entirely. If you push to a repository URL that does not exist yet, the platform will create the repository automatically for you:

git init
git remote add origin git@project113.com:your-username/your-repo.git
git add .
git commit -m "Initial commit"
git push -u origin master

The repository is created on first push.

Pushing Code via SSH

Initialize a local Git repository and push it to the platform:

git commit -m "Initial commit"
git push -u origin master

Pushing Code via HTTPS

You can also use the HTTPS URL shown on your repository page. You will be prompted for your credentials.

git remote add origin https://project113.com/your-username/your-repo.git
git push -u origin master

What Happens Next

Once your code is pushed, you can:

  • Browse files and directories in the web interface
  • Create change requests to collaborate with your team
  • Set up CI/CD pipelines to automate builds and tests
  • Configure access control to manage who can see and modify your code