This commit is contained in:
cutemeli
2025-12-22 10:35:30 +00:00
parent 0bfc6c8425
commit 5ce7ca2c5d
38927 changed files with 0 additions and 4594700 deletions

View File

@@ -1,296 +0,0 @@
# 2.5.6 (16 December 2025)
* [*] Accessibility improvements.
* [-] Fixed an issue where the link to the Web Hosting Access page was broken. (EXTPLESK-9840)
* [-] Fixed an issue where the Copy to Clipboard button did not work. (EXTPLESK-9831)
# 2.5.5 (14 October 2025)
* [*] Security improvements.
# 2.5.4 (3 April 2025)
* [*] Added support for PHP 8.4 to ensure compatibility with future Plesk releases.
# 2.5.3 (21 May 2024)
* [*] Security improvements.
# 2.5.2 (12 April 2024)
* [-] The extension no longer produces PHP Deprecation warning during remote repository creation. (EXTGIT-334)
# 2.5.1 (18 January 2024)
* [*] Internal improvements.
# 2.5.0 (16 Aug 2023)
* [+] The **Git** button on the domain card now shows the last commit hash in the local copy of the repository. It also helps to see at a glance whether the commit is deployed.
The feature is automatically enabled for all new repositories. It will be enabled for existing repositories after the next manual or automatic deployment.
In Plesk Obsidian 18.0.55 and later, a tooltip with the commit message, author, and date will also be displayed when hovering over the button.
# 2.4.13 (19 July 2023)
* [*] Internal improvements.
# 2.4.12 (8 June 2023)
* [*] Internal improvements.
# 2.4.11 (2 June 2023)
* [*] Internal improvements.
# 2.4.10 (19 May 2023)
* [*] Internal improvements.
# 2.4.9 (9 May 2023)
* [-] Fixed processing of webhooks. (EXTGIT-319)
# 2.4.8 (3 May 2023)
* [*] The extension now respects the selected branch when requesting a webhook.
# 2.4.7 (4 April 2023)
* [-] Moved the "Git" button from the "Install Application' drawer to the domain card. Also, the button is now shown in domain overview.
* [-] Added a detailed warning message shown if the extension cannot perform post-deployment actions.
# 2.4.6 (29 March 2023)
* [-] Fixed deployment of a new private repository. (EXTGIT-315)
# 2.4.5 (27 March 2023)
* [*] Updated translations of custom buttons in the "Install application" drawer.
* # 2.4.4 (21 February 2023)
* [*] Update custom buttons.
# 2.4.3 (14 February 2023)
* [*] Internal improvements.
# 2.4.2 (13 February 2023)
* [*] Internal improvements.
# 2.4.1 (8 February 2023)
* [*] Minor improvements.
# 2.4.0 (26 January 2023)
* [+] Added the ability to select users who can access a local repository via HTTP/HTTPS.
Previously, only the system user had access to all repositories in a subscription. You can now select additional users when creating a local repository or changing the settings of an existing one. These users can pull and push to a local repository via HTTP/HTTPS using their credentials.
* [+] The Git extension now correctly handles moving domains between subscriptions and places the Git
directory to the appropriate subscription afterward.
**Note** Moving domains between subscriptions changes the `plesk-git` directory password because it must be synced with the subscription's system user password.
# 2.3.3 (25 November 2022)
* [*] Minor improvements.
# 2.3.2 (20 October 2022)
* [-] The extension now updates correctly again. (EXTGIT-267)
# 2.3.1 (18 October 2022)
* [-] Fixed the issue with pulling from remote repositories. (EXTGIT-265)
# 2.3.0 (17 October 2022)
* [+] Added support for multiple deploy keys for each domain.
# 2.2.0 (11 August 2022)
* [+] The extension now deploys files to production websites asynchronously if the deployment was triggered by a webhook.
* [+] Added the `run-actions` option to the `create`and `update` API methods, which enable/disable execution of additional deployment actions.
To enable/disable execution of additional deployment actions via the CLI, run the following commands:
```
# enables execution of additional deployment actions for the "repo-example" repository on the domain "example.com"
plesk bin extension --call git --update -domain example.com -name repo-example -run-actions false
```
```
# disables execution of additional deployment actions for the "repo-example" repository on the domain "example.com"
plesk bin extension --call git --update -domain example.com -name repo-example -run-actions true
```
To enable/disable execution of additional deployment actions via the XML API, run the following commands:
```
<!-- enables execution of additional deployment actions for the "repo-example" repository on the domain "example.com" -->
<packet><extension><call><git><update><domain>example.com</domain><name>repo-example</name><run-actions>true</run-actions></update></git></call></extension></packet>
```
```
<!-- disables execution of additional deployment actions for the "repo-example" repository on the domain "example.com" -->
<packet><extension><call><git><update><domain>example.com</domain><name>repo-example</name><run-actions>false</run-actions></update></git></call></extension></packet>
```
* [+] Added the `async-deploy` method to the CLI and XML API. The method invokes the asynchronous deployment of files to the production website.
To asynchronously deploy files to the production website via the CLI, run the following command:
```
plesk bin extension --call git --async-deploy -domain example.com -name repo-example
```
To asynchronously deploy files to the production website via the XML API, run the following command:
```
<packet><extension><call><git><async-deploy><domain>example.com</domain><name>repo-example</name></async-deploy></git></call></extension></packet>
```
* [-] Fixed removal of additional deployment actions after disabling them in the Plesk interface.
# 2.1.1 (6 July 2022)
* [-] It is once again possible to add repositories via the extension. (EXTGIT-232)
# 2.1.0 (1 July 2022)
* [*] Internal improvements.
# 2.0.4 (17 May 2022)
* [+] Added the ability to perform custom deployment actions separately from the `deploy` command.
To use deferred execution of custom deployment actions via the CLI, run the following commands:
```
# run deploy without custom deployment actions for repository "repo-example" on domain "example.com"
plesk bin extension --call git --deploy -domain example.com -name repo-example -no-deployment-actions
```
```
# only run custom deployment actions for the "repo-example" repository on domain "example.com"
plesk bin extension --call git --run-deployment-actions -domain example.com -name repo-example
```
To use deferred execution of custom deployment actions via the XML API, run the following requests:
```
<!-- run deploy without custom deployment actions for repository "repo-example" on domain "example.com" -->
<packet><extension><call><git><deploy><domain>example.com</domain><name>repo-example</name><no-deployment-actions/></deploy></git></call></extension></packet>
```
```
<!-- only run custom deployment actions for the "repo-example" repository on domain "example.com" -->
<packet><extension><call><git><run-deployment-actions><domain>example.com</domain><name>repo-example</name></run-deployment-actions></git></call></extension></packet>
```
# 2.0.3 (1 March 2022)
* [+] A new method `get-public-key` was added to both CLI and XML API. The method generates a new SSH key for a domain if it does not already have an SSH key generated for it and displays the publik key part as the output.
To generate a new SSH key for "example.com" via the CLI, run the following command:
```
plesk bin extension --call git --get-public-key -domain example.com
```
To generate a new SSH key for "example.com" via XML API, execute the following request:
```
<packet><extension><call><git><get-public-key><domain>example.com</domain></get-public-key></git></call></extension></packet>
```
* [-] When logged in as a reseller, creating a git local repository no longer results in an error. (EXTGIT-205)
* [-] The "Specified directory was not found on the server" message no longer appears when trying to change the deployment directory in the Git settings after an update. (EXTGIT-196)
# 2.0.2 (21 January 2022)
* [*] Internal improvements.
# 2.0.1 (17 January 2022)
* [-] The Git extension is opened if the "Git" option was selected during domain creation. (EXTGIT-201)
# 2.0.0 (23 December 2021)
* [+] On Plesk for Linux servers, added the ability to specify login and password for remote HTTPS repositories.
* [*] Completely overhauled the UI to make it modern and more convenient.
* [-] The last commit information is now correctly updated after pulling updates without the need to refresh the page. (EXTGIT-33)
* [-] It is now possible to select the root folder when setting the Git deploy path. (EXTGIT-54)
* [-] The currently selected folder is now shown when changing the Git deploy path. (EXTGIT-69)
* [-] Changing domain settings no longer results in the inability to push changes to local Git repositories. (EXTGIT-70)
* [-] The Git extension no longer shows the wrong directory tree when editing the Git deploy path. (EXTGIT-142)
* [-] The Git extension no longer causes icons to be misaligned on buttons in the domain menu. (EXTGIT-158)
# 1.3.5 (17 November 2021)
* [-] The extension now correctly shows directories in the "Change branch and path" menu. (EXTGIT-104)
# 1.3.4 (15 October 2021)
* [-] The extension now correctly adds a remote repository via SSH in Plesk Obsidian 18.0.39 and later. (EXTGIT-184)
# 1.3.3 (8 October 2021)
* [*] Internal improvements.
# 1.3.2 (16 September 2021)
* [*] Internal improvements.
# 1.3.1 (3 September 2021)
* [*] Improved integration of the Git section on the "Add Domain" screen.
# 1.3.0 (7 June 2021)
* [*] The extension interface improvements.
* [*] The extension form is no longer shown by default when users create subscriptions, customers, domains, and subdomains. To make the form visible, add the following lines to the `panel.ini` file:
```ini
[ext-git]
enableOnSiteCreate = true
```
# 1.2.4 (7 June 2021)
* [!] We have created the current extension's "maintenance only" fork for Plesk versions 18.0.32-18.0.35 and labeled it version 1.2.4. We do not plan to update the fork unless any essential security fixes are necessary. We will introduce major changes updating only the master branch for Plesk Obsidian 18.0.36 and later.
# 1.2.3 (13 April 2021)
* [-] In Plesk for Windows, creating a repository for a domain no longer fails if the system user password of the subscription
the domain belongs to contains special characters. (EXTGIT-131)
* [-] Creating a repository no longer fails in Plesk with Git version 2.29.2 and later. (EXTGIT-126)
# 1.2.2 (5 April 2021)
* [-] If a customer's subscription has the Git management permission denied,
the customer no longer sees the "Permission denied: the user does not have the manage permission" error instead of Plesk pages.
We spotted this bug in the extension version 1.2.1. (EXTGIT-133)
# 1.2.1 (30 March 2021)
* [-] Added a detailed error message shown if the extension cannot perform `git push` because `git-auto-push` was configured for an add-on domain moved to another subscription. (EXTGIT-123)
# 1.2.0 (11 November 2020)
* [*] Security improvements.
# 1.1.5 (11 November 2020)
* [!] We have created the current extension's "maintenance only" fork for Plesk versions 17.0.16-18.0.31 and labeled it version 1.1.5. We do not plan to update the fork unless any essential security fixes are necessary. We will introduce major changes updating only the master branch for Plesk Obsidian 18.0.32 and later.
# 1.1.4 (3 April 2020)
* [-] In Plesk for Linux with Git version 2.16.0 and later, it is now possible to clone a remote Git repository even if it uses a non-standard SSH port. (EXTGIT-106)
* [-] When the `git-helper` utility is executed in Plesk for Linux, the utility name is now shown. (EXTGIT-107)
# 1.1.3 (13 November 2019)
* [-] On the domain creation page, the popover that appears when clicking the "automatically deployed" control (under "Enable Git support") is now positioned correctly. (EXTGIT-82)
* [-] On the domain creation page, the icon next to the field used to specify the path to the directory to which the files from the repository are to be deployed (under "Enable Git support") is now displayed correctly. (EXTGIT-93)
# 1.1.2 (4 July 2019)
* [-] Fixed the look of the Git section on the "Add Domain" screen. (EXTGIT-85)
* [-] Pulling updates no longer fails with the "Call to a member function websiteOverviewUrl() on null" error. (EXTGIT-88)
# 1.1.1 (27 December 2018)
* [-] .local TLD can now be specified in the remote repository URL. (EXTGIT-75)
* [-] Improved the "Adding Your Own Subscription" screen: selection of a service plan was moved from the Git extension section to the Subscription one.(EXTGIT-73)
* [-] If Italian was set as the administrator's interface language, Git repositories can now be removed via the interface without any issues. (EXTGIT-65)
* [-] If the `actions` node is empty, XML API calls to Git repositories are now executed without PHP notices and warnings. (EXTGIT-48)
# 1.1.0 (13 April 2017)
* [-] When checking out a repository, users could only select existing directories for the deploy path. (EXTGIT-34)
* [-] Users could not create subdomains for addon domains with hosting type set to "Forwarding". (EXTGIT-38)
* [-] Under specific circumstances, if more than one repository was checked out for a single domain, trying to remove a repository resulted in a different repository being removed instead. (EXTGIT-39)
* [-] Git repositories could not be created if deployment mode was set to "No Deployment". (EXTGIT-40)
* [-] After changing the deployment mode of an existing repository from "No Deployment" to "Automatic Deployment", an absolute deploy path was displayed instead of one relative to the subscription's root. (EXTGIT-41)
* [-] Users could not authenticate with local Git repositories belonging to subdomains after the subscription's system user password was changed. (EXTGIT-45)

View File

@@ -1,14 +0,0 @@
### Features
To make deploying your website even easier, Plesk Onyx introduces integration with Git - the most popular source code management system. An awesome upgrade from the older extension, Gitman, Git extension allows you to do the following:
- Easily deploy your website content by either pushing it to a local Git repository or by pulling from a remote one.
- Use GitHub, BitBucket, Travis, or any other software engineering service of your choice.
- Create multiple branches in a single repository - useful for separating staging and production code.
- Deploy manually for complete control or enable automatic deployment to save time.
### Licensing
This extension is provided for **Free**.
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1 +0,0 @@
2025-12-16 14:14:15

View File

@@ -1 +0,0 @@
93059c7cb721874454fa4d19f2f710984a855a37

View File

@@ -1,14 +0,0 @@
### الميزات
الميزات لتسهيل عملية نشر موقعك على الويب، يقدم برنامج Plesk Onyx إمكانية التكامل مع برنامج Git - النظام الأكثر شيوعًا لإدارة الرمز المصدري. تتيح لك الترقية المميزة من الملحق الأقدم، الملحق Gitman وGit، إمكانية القيام بما يلي:
- نشر محتوى موقعك بسهولة عن طريق إما دفعه إلى مستودع Git محلي أو سحبه من مستودع بعيد.
- استخدام GitHub أو BitBucket أو Travis أو أي خدمة هندسة برمجية أخرى من اختيارك.
- إنشاء فروع متعددة في مستودع واحد - مفيد لفصل رمز التقسيم المرحلي والإنتاج.
- النشر يدويًا لضمان التحكم الكامل أو تمكين النشر التلقائي لتوفير الوقت.
### الترخيص
يتوفر هذا الملحق **مجانًا**.
[معرفة المزيد](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funcions
Per tal de simplificar encara més el desplegament del seu lloc web, Plesk Onyx ofereix integració amb Git, el sistema de gestió de codi font més popular. L'extensió Git, una impressionant actualització de l'anterior Gitman, li permet:
- Desplegar fàcilment el seu lloc web ja sigui fent un push a un repositori Git local o bé mitjançant un pull des d'un repositori remot.
- Utilitzar GitHub, BitBucket, Travis o qualsevol altre servei d'enginyeria de software.
- Crear múltiples branques en un únic repositori, el que resulta especialment útil per a separar el codi en fase de prova del de producció.
- Efectuar desplegaments manuals per a gaudir d'un control total o bé activar desplegaments automàtics.
### Llicència
Aquesta extensió és **Gratuïta**.
[Més informació](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funkce
Chcete-li nasazení vašeho webu ještě zjednodušit, Plesk Onyx představuje integraci se systémem Git - nejpopulárnějším systémem pro správu zdrojového kódu. Vynikající aktualizace staršího rozšíření Gitman, rozšíření Git poskytuje následující možnosti:
- Snadné nasazení obsahu vašeho webu vložením na místní úložiště systému Git nebo přesun z nějakého vzdáleného.
- Používání GitHub, BitBucket, Travis nebo jiné služby pro softwarové projekty podle vašeho výběru.
- Vytvoření většího počet značek v jednoduchém úložišti - užitečné k oddělení přípravného a produkčního kódu.
- Ruční nasazení pro úplnou kontrolu nebo aktivace automatického nasazení kvůli úspoře času.
### Správa licencí
Toto rozšíření je poskytováno **Zdarma**.
[Další info](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funktioner
For at gøre deployeringen af dit websted endnu nemmere, introducerer Plesk Onyx integration med Git - det mest populære kildekode-administrationssystem. En fantastisk opgradering af den ældre udvidelse Gitman, Git-udvidelse gør det muligt at foretage følgende:
- Nem deployering af webstedets indhold ved enten at pushe det til et lokalt Git-repository eller ved at pull'e fra et eksternt.
- Brug GitHub, BitBucket, Travis eller anden software-engineeringservice efter eget valg.
- Opret flere forgreninger i et enkelt repository - nyttigt til separering af stagingkopier og produktionskode.
- Deployer manuelt for komplet kontrol eller aktiver automatisk deployering for at spare tid.
### Licensering
Denne udvidelse leveres **Gratis**.
[Få yderligere oplysninger](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funktionen:
Damit Sie Ihre Websites noch einfacher bereitstellen können, kann Git  das beliebteste System zur Quellcodeverwaltung in Plesk Onyx integriert werden. Wir haben dazu die Erweiterung Gitman verbessert. Folgende Funktionen stehen in der neuen Git-Erweiterung zur Verfügung:
- Website-Inhalte ganz einfach bereitstellen: mithilfe von Push in ein lokales Git-Repository übertragen oder per Pull aus einem Remote-Repository abrufen.
- Sie können GitHub, BitBucket, Travis oder einen anderen beliebigen Dienst zur Software-Entwicklung einsetzen.
- Mehrere Zweige können in einem Repository erstellt werden. Dies ist besonders hilfreich, wenn Sie Code für die Staging- und Produktionsumgebung trennen möchten.
- Die Bereitstellung lässt sich automatisieren, um so Zeit zu sparen. Sie können sie jedoch auch manuell vornehmen, um die Einstellungen individuell anzupassen.
### Lizenz:
Diese Erweiterung ist **kostenlos**.
[Weitere Informationen](https://docs.plesk.com/de-DE/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Χαρακτηριστικά
Για ακόμα μεγαλύτερη διευκόλυνση της ανάπτυξης της τοποθεσίας web σας, το Plesk Onyx προσφέρει τη δυνατότητα ενοποίησης με το Git, το δημοφιλέστερο σύστημα διαχείρισης πηγαίου κώδικα. Η επέκταση Git, μια εξαιρετική αναβάθμιση σε σχέση με την παλαιότερη επέκταση Gitman, σας δίνει τη δυνατότητα να κάνετε τα εξής:
- Να αναπτύσσετε εύκολα το περιεχόμενο της τοποθεσίας web σας, είτε προωθώντας το σε ένα τοπικό αποθετήριο δεδομένων Git είτε ανακτώντας το από ένα απομακρυσμένο αποθετήριο.
- Να χρησιμοποιήσετε τα GitHub, BitBucket, Travis ή οποιαδήποτε άλλη υπηρεσία ανάπτυξης λογισμικού της επιλογής σας.
- Να δημιουργήσετε πολλαπλούς κλάδους σε ένα αποθετήριο, μια δυνατότητα χρήσιμη για τον διαχωρισμό του κώδικα ενδιάμεσου σταδίου και του κώδικα παραγωγής.
- Να αναπτύξετε χειροκίνητα για πλήρη έλεγχο ή να ενεργοποιήσετε την αυτόματη ανάπτυξη για εξοικονόμηση χρόνου.
### Άδειες χρήσης
Η επέκταση αυτή παρέχεται **Δωρεάν**.
[Μάθετε περισσότερα](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Prestaciones
Con el fin de simplificar aún más si cabe el despliegue de su sitio web, Plesk Onyx ofrece integración con Git - el sistema de gestión de código fuente más popular. Siendo una mejora de una versión anterior, Gitman, la extensión Git le permite:
- Desplegar el contenido de su sitio web fácilmente, ya sea efectuando un push de este a un repositorio Git local o efectuando un pull desde un repositorio remoto.
- Usar GitHub, BitBucket, Travis o cualquier otro servicio de ingeniería de software.
- Crear múltiples ramas en un único repositorio, lo que resulta especialmente útil si desea separar el código de prueba del código de producción.
- Efectuar despliegues manuales para así disponer de un control absoluto o activar despliegues automáticos.
### Licenciamiento
Esta extensión se proporciona de forma **Gratuita**.
[Más información](https://docs.plesk.com/es-ES/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Ominaisuudet
Verkkosivuston mahdollisimman helpon käyttöönoton varmistamiseksi Plesk Onyx tarjoaa Git-integroinnin - suosituin lähdekoodin hallintajärjestelmä. Vanhemman Gitman-laajennuksen loistavana laajennuksena Git-laajennus mahdollistaa seuraavat toiminnot:
- Verkkosivuston sisällön helppo käyttöönotto joko painamalla se paikalliseen Git-säilöön tai vetämällä se etäsäilöstä.
- Valitsemasi GitHub-, BitBucket-, Travis- tai muun ohjelmiston suunnittelupalvelun käyttö.
- Useampien haarojen luonti yksittäiseen säilöön - hyödyllinen valmistelu- ja tuotantokoodien erottamiseen.
- Manuaalinen käyttöönotto täydellistä hallintaa varten tai automaattisen käyttöönoton mahdollistaminen ajan säästämiseksi.
### Käyttöoikeus
Tämä laajennus on **ilmainen**.
[Lisätietoja](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Fonctionnalités :
Afin de simplifier le déploiement de votre site Web, Plesk Onyx propose l'intégration avec Git, le système de gestion de code source le plus populaire. Git est une mise à jour très poussée de la version antérieure Gitman. Avec Git, vous pouvez :
- Déployer facilement le contenu de votre site Web, soit en le poussant vers un dépôt Git soit en le récupérant depuis un dépôt distant.
- Utiliser GitHub, BitBucket, Travis ou un autre service de software engineering de votre choix.
- Créer de multiples branches dans un dépôt unique, ce qui est pratique notamment pour séparer les codes de test et de production.
- Choisir entre un déploiement manuel avec contrôle complet ou un déploiement automatique pour gagner du temps.
### Licence :
Cette extension est **gratuite**.
[En savoir plus](https://docs.plesk.com/fr-FR/onyx/administrator-guide/g%C3%A9rer-des-sites-web/prise-en-charge-git.75824/)

View File

@@ -1,14 +0,0 @@
### תכונות
כדי להקל עוד יותר על פריסת אתר האינטרנט שלך, Plesk Onyx מוסיף אינטגרציה עם Git - המערכת הפופולרית ביותר לניהול קוד מקור. Git, המהווה שדרוג מדהים מההרחבה הקודמת, Gitman, מאפשרת לך:
- לפרוס בקלות את תוכן אתר האינטרנט על-ידי דחיפתו אל מאגר Git מקומי או על-ידי משיכתו ממאגר מרוחק.
- להשתמש ב-GitHub, BitBucket, Travis או כל שירות אחר להנדסת תוכנה שתבחר.
- ליצור הסתעפויות מרובות במאגר אחד שימושי להפרדה בין קוד זמני לקוד ייצור.
- לפרוס ידנית לשליטה מלאה או לאפשר פריסה אוטומטית כדי לחסוך זמן.
### רישוי
הרחבה זו מסופקת ב**חינם**.
[למידע נוסף](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funkciók
Webhelye telepítésének további könnyítésére a Plesk Onyx bevezeti a Git tárolóval való integrálást - mely a legnépszerűbb forráskód kezelő rendszer. Egy nagyszerű régi verzióról magasabb verzióra frissítés a Gitman, A következőket teszi lehetővé a Git bővítmény:
- Webhely tartalmai egyszerű telepítése a hely Git tárolóba küldéssel vagy egy távoli tárolóból való lehívással.
- Választása szerint a GitHub, BitBucket, Travis vagy más szoftvertervezési szolgáltatást használja.
- Hozzon létre több ágat egy tárolón belül - hasznos a fejlesztési és üzemeltetési kód szétválasztására.
- Kézzel végezze a telepítést a teljes ellenőrzés biztosítása érdekében vagy engedélyezze az automatikus telepítést az időtakarékosság céljából.
### Licencelés
**Ingyenesen** áll rendelkezésre e bővítmény.
[További tudnivalók](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Fitur
Untuk membuat implementasi situs web lebih mudah lagi Plesk Onyx memperkenalkan integrasi dengan Git - sistem manajemen kode sumber paling populer. Peningkatan yang luar biasa dari ekstensi yang lebih tua, Gitman, ekstensi git membuat Anda dapat melakukan hal berikut:
- Menerapkan dengan mudah konten situs web Anda dengan mendorongnya ke dalam repositori Git lokal atau dengan menariknya dari repositori jauh.
- Gunakan GitHub, BitBucket, Travis, atau layanan rekayasa perangkat lunak lain pilihan Anda.
- Membuat beberapa percabangan dalam repositori tunggal - bermanfaat untuk memisahkan tahapan dan kode produksi.
- Penerapan secara manual untuk mengontrol sepenuhnya atau mengaktifkan penerapan otomatis untuk menghemat waktu.
### Lisensi
Ekstensi ini disediakan secara **Gratis**.
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funzionalità
Per facilitare ulteriormente l'implementazione del tuo sito Web, Plesk Onyx presenta l'integrazione con Git - il sistema di gestione del codice sorgente oggi più apprezzato e diffuso. L'estensione Git, che rappresenta un aggiornamento critico dell'estensione precedente, Gitman, consente di:
- Implementare agevolmente il contenuto del sito Web, inviandolo in un archivio Git locale o estraendolo da un archivio remoto.
- Utilizzare GitHub, BitBucket, Travis o qualsiasi altro servizio di ingegnerizzazione software preferito.
- Creare varie diramazioni in un archivio singolo: utile per separare i codici temporanei e quelli di produzione.
- Effettuare l'implementazione manualmente, per un controllo completo, o abilitare l'implementazione automatica per risparmiare tempo.
### Servizio licenze
Questa estensione viene fornita **gratuitamente**.
[Più info](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### 機能
ウェブサイトの展開をさらに容易にするために、Plesk Onyx にはソースコード管理システムの定番である Git との連携が導入されています。 旧版である Gitman からの素晴らしいアップグレードとなる Git 拡張によって、以下が可能になります。
- ローカルの Git リポジトリにプッシュするか、リモートの Git リポジトリからプルすることにより、ウェブサイトのコンテンツを容易に展開する
- GitHub、BitBucket、Travis、またはその他のソフトウェアエンジニアリングサービスを使用する
- 単一のリポジトリに複数のブランチを作成する。ステージング環境と本番環境のコードを隔離するのに役立ちます
- 手動での展開によって完全な管理性を確保するか、自動的な展開によって時間を短縮する
### ライセンス
この拡張は **無料** です。
[詳細](https://docs.plesk.com/ja-JP/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### 기능
Plesk Onyx는 웹 사이트 구축을 더욱 쉽게 할 수 있도록 가장 많이 사용되는 소스 코드 관리 시스템인 Git와 통합되도록 했습니다. 이전의 확장 프로그램 Gitman에서 한 단계 업그레이드된 Git 확장 프로그램으로 다음을 수행할 수 있습니다.
- 로컬 Git 리포지토리로 푸시하거나 원격 Git 리포지토리에서 풀링하여 웹 사이트 콘텐츠를 손쉽게 구축합니다.
- GitHub, BitBucket, Travis 또는 다른 소프트웨어 엔지니어링 서비스를 원하는 대로 사용합니다.
- 하나의 리포지토리에서 여러 개의 지점을 만들면 스테이징 및 프로덕션 코드를 분리하는 데 유용합니다.
- 완전한 통제를 위해 수동으로 구축하거나 자동으로 구축하여 시간을 절약합니다.
### 라이선싱
이 확장 프로그램은 **무료**입니다.
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Ciri
Untuk menjadikan penggunaan laman web anda lebih mudah, Plesk Onyx memperkenalkan integrasi dengan Git - sistem pengurusan kod sumber yang paling popular. Peningkatan yang terbaik daripada sambungan versi lama, Gitman, sambungan Git membolehkan anda melakukan perkara berikut:
- Menggunakan kandungan laman web anda dengan mudah sama ada menolaknya ke repositori Git setempat atau dengan menarik dari jarak jauh.
- Gunakan GitHub, BitBucket, Travis atau mana-mana perkhidmatan kejuruteraan perisian pilihan anda.
- Cipta pelbagai cawangan dalam repositori tunggal - berguna untuk memisahkan pemeringkatan dan kod pengeluaran.
- Gunakan secara manual untuk mengawal sepenuhnya atau mendayakan penggunaan secara automatik untuk menjimatkan masa.
### Pelesenan
Sambungan ini disediakan secara **Percuma**.
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funksjoner
For å gjøre distribuering av nettstedet ditt enda enklere, introduserer Plesk Onyx-integrering med Git ­ det mest populære administrasjonssystemet for kildekode. Denne Git-utvidelsen er en fantastisk oppgradering fra den eldre utvidelsen Gitman og lar deg gjøre følgende:
- Distribuer enkelt nettstedsinnholdet ved å enten skyve det til et lokalt Git-repositorium eller ved å hente det fra et eksternt.
- Bruk GitHub, BitBucket, Travis eller en annen valgfri programvaretjeneste.
- Opprett flere forgreninger i et enkelt repositorium. Nyttig for å skille kode for test- og produksjonsmiljø.
- Distribuer manuelt for full kontroll eller aktiver automatisk distribusjon for å spare tid.
### Lisensiering
Denne utvidelsen leveres **Gratis**.
[Lær mer](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Kenmerken
Om het implementeren van uw website nog eenvoudiger te maken introduceert Plesk Onyx integratie met Git - het populairste systeem voor broncodebeheer. De Git-extensie is een geweldige upgrade van de oudere extensie, Gitman. U kunt hiermee het volgende doen:
- Eenvoudig uw website implementeren door middel van een push naar een lokale Git-repository of een pull vanuit een externe Git-repository.
- Gebruik maken van GitHub, BitBucket, Travis of een andere software engineering service.
- Meerdere branches aanmaken in een enkele repository - handig voor het onderscheiden van de test- en productiecode.
- Implementaties handmatig uitvoeren voor complete controle, of automatisch om tijd te besparen
### Licentie
Deze extensie wordt **gratis** meegeleverd.
[Meer informatie](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funkcje
Aby jeszcze bardziej ułatwić wdrożenie witryny, Plesk Onyx wprowadza integrację z Git - najpopularniejszym systemem zarządzania kodami źródłowymi. Jest to wspaniała aktualizacja ze starszego rozszerzenia (Gitman), która pozwala na wykonanie następujących czynności:
- Z łatwością rozmieść zawartość witryny internetowej, przesyłając ją do lokalnego repozytorium Git lub pobierając ze zdalnego.
- Użyj GitHub, BitBucket, Travis lub dowolnej innej usługi programistycznej wybranej przez ciebie.
- Stwórz wiele gałęzi w jednym repozytorium - użyteczne do oddzielenia kodu roboczego i produkcyjnego.
- Wdróż ręcznie, aby uzyskać pełną kontrolę lub włącz automatyczne wdrażanie, aby zaoszczędzić czas.
### Licencjonowanie
To rozszerzenie jest dostępne **ZA DARMO**.
[Dowiedz się więcej](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Recursos
Para tornar a implementação do seu site ainda mais fácil, o Plesk Onyx apresenta a integração com o Git - o mais popular sistema de gerenciamento de código fonte. Uma atualização incrível da extensão antiga, Gitman, a extensão Git permite que você:
- Implemente facilmente o conteúdo do seu site enviando para um repositório Git local por push ou extraindo de um repositório remoto.
- Use o GitHub, o BitBucket, o Travis ou qualquer outro serviço de engenharia de software de sua escolha.
- Crie várias ramificações em um único repositório - útil para separar o código de preparo e de produção.
- Implemente manualmente para um controle completo ou habilite a implementação automática para economizar tempo.
### Licença
Essa extensão é fornecida **Gratuitamente**.
[Saiba mais em](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funcionalidades
Para tornar a implementação do seu site ainda mais fácil, o Plesk Onyx introduz a integração com o Git - o mais popular sistema de administração de código fonte. Uma atualização incrível da extensão antiga, Gitman, a extensão Git permite que faça o seguinte:
- Implemente facilmente o conteúdo do seu website, seja empurrando-o para um repositório Git local ou puxando-o de um repositório remoto.
- Utilizar o GitHub, BitBucket, Travis ou qualquer outro serviço de engenharia de software à sua escolha.
- Criar várias ramificações num único repositório - útil para separar o código de preparação e produção.
- Implantar manualmente para um controlo completo ou ativar a implantação automática para economizar tempo.
### Licenciamento
Esta extensão é fornecida **Gratuitamente**.
[Saiba mais](https://docs.plesk.com/pt-BR/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Funcții
Pentru a facilita și mai mult implementarea site-ului web, Plesk Onyx lansează integrarea cu Git cel mai popular sistem de gestionare a codului sursă. O actualizare extraordinară față de extensia veche, Gitman, extensia Git vă oferă următoarele funcții:
- Implementarea facilă a conținutului de site web, fie prin operații de push în depozitul local Git, fie prin preluarea (pull) dintr-un depozit la distanță.
- Utilizarea GitHub, BitBucket, Travis sau a oricărui alt serviciu de inginerie software.
- Crearea mai multor ramificații într-un singur depozit util pentru separarea codului aflat în testare de cel de producție.
- Implementare manuală pentru control complet sau activarea implementării automate, pentru a economisi timp.
### Licență
Această extensie este oferită **Gratuit**.
[Informații suplimentare](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Возможности
Чтобы сделать развертывание вашего сайта еще проще, Plesk Onyx предлагает интеграцию с Git самой популярной системой управления исходным кодом. Представляя собой важное усовершенствование старого расширения Gitman, расширение Git позволяет делать следующее:
- Легко развертывать контент сайта, либо отправляя его в локальный репозиторий Git, либо получая его из удаленного репозитория.
- Использовать GitHub, BitBucket, Travis или любую другую службу разработки программного обеспечения по вашему выбору.
- Создавать несколько веток в одном репозитории, что может быть полезным для разделения промежуточной и окончательной версий кода.
- Развертывать контент вручную для полного контроля или автоматически для экономии времени.
### Лицензирование
Это расширение предоставляется **БЕСПЛАТНО**.
[Узнать больше](https://docs.plesk.com/ru-RU/onyx/administrator-guide/%D0%A3%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5-%D1%81%D0%B0%D0%B9%D1%82%D0%B0%D0%BC%D0%B8/%D0%9F%D0%BE%D0%B4%D0%B4%D0%B5%D1%80%D0%B6%D0%BA%D0%B0-git.75824/)

View File

@@ -1,14 +0,0 @@
### Funktioner
För att göra din webbplats ännu effektivare, introducerar Plesk Onyx integration med Git - det mest populära källkodshanteringssystemet. En fantastisk uppgradering av den äldre anknytningen, Gitman, Git-förlängningen gör att du kan göra följande:
- Utveckla webbplatsens innehåll enkelt genom att antingen trycka på det till ett lokalt Git-förråd eller genom att dra från en fjärrkontroll.
- Använd GitHub, BitBucket, Travis eller någon annan programvaruteknik som du väljer.
- Skapa flera grenar i ett enda förråd - användbart för att skilja stegnings- och produktionskod.
- Installera manuellt för fullständig kontroll eller aktivera automatisk implementering för att spara tid.
### Licensiering
Denna förlängning finns tillgänglig **Gratis**.
[Mer information](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### ลักษณะสำคัญ
เพื่อช่วยให้การใช้งานเว็บไซต์ของคุณง่ายขึ้น Plesk Onyx ได้มีการรวมระบบเข้ากับ Git - ระบบการบริหารซอร์สโค้ดที่ได้รับความนิยมมากที่สุด โปรแกรมส่วนเสริม Git เป็นการอัปเกรดที่น่าทึ่งจากโปรแกรมส่วนเสริมรุ่นก่อน Gitman ช่วยให้คุณสามารถดำเนินการได้ดังต่อไปนี้:
- สามารถนำเนื้อหาเว็บไซต์ของคุณมาใช้งานได้อย่างง่ายดายโดยส่งมายังพื้นที่เก็บข้อมูลแบบโลคอลของ Git หรือโดยดึงมาจากระยะไกล
- ใช้ GitHub, BitBucket, Travis หรือการให้บริการวิศวกรรมซอฟต์แวร์อื่นตามที่คุณต้องการ
- สร้างหลายสาขาในที่เก็บเดียว - มีประโยชน์สำหรับการแยกแพลตฟอร์มและรหัสการผลิต
- ใช้งานแบบแมนนวลเพื่อการควบคุมอย่างสมบูรณ์ หรือใช้งานแบบอัตโนมัติเพื่อประหยัดเวลา
### การอนุญาตให้ใช้งาน
โปรแกรมส่วนเสริมนี้ให้บริการ **ฟรี**
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Mga Feature
Upang mas mapadali ang pag-deploy sa iyong website, na-integrate ng Plesk Onyx ang Git - ang pinakasikat na system ng pamamahala ng source code. Sa pamamagitan ng Git extension, na isang magandang upgrade mula sa mas lumang extension na Gitman, magagawa mo ang mga sumusunod:
- Walang hirap na i-deploy ang content ng iyong website sa pamamagitan ng pag-push nito sa isang lokal na repository ng Git o pagkuha mula sa isang remote na repository.
- Gamitin ang GitHub, BitBucket, Travis, o anupamang serbisyo sa software engineering na gusto mo.
- Gumawa ng maraming branch sa iisang repository - kapaki-pakinabang para sa paghihiwalay ng staging code at production code.
- Manual na mag-deploy para sa ganap na kontrol o i-enable ang awtomatikong pag-deploy para makatipid ng oras.
### Paglilisensya
**Libre** ang extension na ito.
[Matuto pa](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Özellikler
Web sitesi dağıtmayı daha da kolaylaştırmak için Plesk Onyx, en popüler kaynak kod yönetim sistemi olan Git ile entegrasyonu sunar. Eski uzantı Gitman'dan inanılmaz bir yükseltme olan Git uzantısı, aşağıdakileri yapmanızı sağlar:
- Web sitesi içeriğinizi yerel bir Git deposuna iterek veya uzaktaki bir depodan çekerek, onu kolayca dağıtın.
- GitHub, BitBucket, Travis veya istediğiniz diğer herhangi bir yazılım mühendisliği servisini kullanın.
- Tek bir depoda birden fazla dal oluşturun - hazırlama ile üretim kodunu ayırmak için yararlıdır.
- Tam kontrol için manuel olarak dağıtın veya zamandan tasarruf sağlamak için otomatik dağıtımı etkinleştirin.
### Lisanslama
Bu uzantı **Bedavadır**.
[Daha Fazla Bilgi](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Особливості
Для ще більшого спрощення запуску вашого вебсайту, Plesk Onyx представляє інтеграцію з Git - найпопулярнішою системою управління вихідним кодом. Будучи чудовим вдосконаленням попереднього розширення, Gitman, розширення Git дозволяє вам робити наступне:
- Легко впроваджувати контент вашого вебсайту передаючи його або до локального сховища Git, або дістаючи його з віддаленого сховища.
- Використовувати GitHub, BitBucket, Travis, або будь-яку іншу програмувальну послугу за вашим вибором.
- Створювати декілька розділів у одному сховищі, що корисно для відокремлення підготовчого та фінального коду.
- Запускати вручну для повного контролю, або вмикати автоматичний запуск для економії часу.
### Ліцензування
Це розширення надається **Безкоштовно**.
[Дізнайтеся більше](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### Tính năng
Để giúp việc triển khai website của bạn được dễ dàng hơn, Plesk Onyx giới thiệu khả năng tích hợp với Git - hệ thống quản lý mã nguồn phổ biến nhất. Phần mở rộng Git, một cập nhật tuyệt vời từ phần mở rộng cũ hơn là Gitman, cho phép bạn thực hiện được những điều sau:
- Dễ dàng triển khai nội dung website bằng cách đưa vào kho lưu trữ Git cục bộ hoặc bằng cách kéo ra từ kho lưu trữ từ xa.
- Sử dụng GitHub, BitBucket, Travis, hoặc bất kỳ dịch vụ kĩ thuật phần mềm nào khác tùy bạn chọn.
- Tạo nhiều nhánh trong một kho lưu trữ - thật hữu ích trong việc chia tách các giai đoạn và mã sản phẩm.
- Triển khai thủ công để kiểm soát hoàn toàn hoặc cho phép triển khai tự động để tiết kiệm thời gian.
### Cấp bản quyền
Phần mở rộng này được cung cấp **Miễn phí**.
[Learn More](https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/)

View File

@@ -1,14 +0,0 @@
### 功能
为了使部署网站变得更简单Plesk Onyx 引入了与 Git 的整合——最流行的源代码管理系统。 Git 扩展是老版扩展Gitman的最新版本它能够允许您
- 通过将网站内容放到本地 Git 仓库或从远程仓库进行调取,从而轻松地对它进行部署。
- 使用GitHubBitBucketTravis或任何你所选择的其他软件工程服务。
- 在单个仓库中创建多个分支——对分离阶段性和生产代码是十分有用的。
- 手动部署以实现完全控制,或启用自动部署以节省时间。
### 许可
此扩展可**免费**提供。
[了解更多]https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/

View File

@@ -1,14 +0,0 @@
### 功能
為了使部署網站變得更簡單Plesk Onyx 引入了與 Git 的整合——最流行的原始程式碼管理系統。 Git 擴展是老版擴展Gitman的最新版本它能夠允許您
- 通過將網站內容放到本地 Git 倉庫或從遠端倉庫進行調取,從而輕鬆地對它進行部署。
- 使用GitHubBitBucketTravis或任何你所選擇的其他軟體工程服務。
- 在單個倉庫中創建多個分支——對分離階段性和生產代碼是十分有用的。
- 手動部署以實現完全控制,或啟用自動部署以節省時間。
### 許可
此擴展可**免費**提供。
[瞭解更多]https://docs.plesk.com/en-US/onyx/administrator-guide/website-management/git-support.75824/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 534 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB