Documentation/content/git/index.md
crapStone da1b77aa6a Add woodpecker ci & many linters (and their required fixes) (#377)
closes #238

Co-authored-by: pat-s <patrick.schratz@gmail.com>
Co-authored-by: Patrick Schratz <pat-s@noreply.codeberg.org>
Reviewed-on: https://codeberg.org/Codeberg/Documentation/pulls/377
Co-authored-by: crapStone <crapstone01@gmail.com>
Co-committed-by: crapStone <crapstone01@gmail.com>
2024-06-11 07:51:22 +00:00

1.2 KiB

eleventyNavigation
key title icon order
Git Working with Git Repositories code-branch 30

On these pages, you will learn how to use the Git version control system with Codeberg.

There are 2 ways to interact with a Git repository hosted on Codeberg:

  1. via the command-line, either through SSH or HTTP.
  2. using the web UI

Option 1 requires a Git client of your choice installed on your local system.

We recommend the use of the SSH protocol.
It offers improved security through key-based access (stronger protection than a regular password) and better ease of use (no need to provide credentials on every push).

{% assign navPages = collections.all | eleventyNavigation %} {%- for entry in navPages %} {% if entry.url == page.url %} {%- if entry.children.length -%}

{%- for child in entry.children %} {%- endfor %}
Find out more in this section:
{{ child.title }}
{% endif %} {% endif %} {%- endfor %}