-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Dmitri Popov <[email protected]>
- Loading branch information
1 parent
a172082
commit 5edfcfb
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# {{ image.title }}: Git application container | ||
{% include 'badges.j2' %} | ||
|
||
|
||
## Description | ||
|
||
Git is a distributed version control system that tracks | ||
versions of files. Git is primarily designed for controlling source code in collaborative software development. | ||
|
||
|
||
## Usage | ||
|
||
This container provides the {{ image.publish_registry.vendor }} version of Git. | ||
|
||
Example of using Git container: | ||
|
||
```ShellSession | ||
$ podman run {{ image.pretty_reference }} git help | ||
``` | ||
|
||
As Git requires a repository, the container | ||
does not explicitly set an entrypoint. This way, you can launch the container in | ||
interactive mode to clone a repository and work on it. To avoid losing all your changes when exiting the container, use a persistent volume mount on launch. | ||
|
||
For more use cases and documentation, refer to the | ||
[Git SCM documentation](https://git-scm.com/doc). | ||
|
||
|
||
{% include 'licensing_and_eula.j2' %} |