refs #5901 First commit

This commit is contained in:
Guillermo Bonet 2023-07-31 10:26:37 +02:00
commit f3469bd61b
1 changed files with 26 additions and 0 deletions

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# Git Branch Clean
The provided code snippet represents an automated Git branch cleanup script written in JavaScript, utilizing the simple-git library. The purpose of this project is to facilitate the maintenance of a Git repository by automatically deleting merged branches that are no longer required. This script is designed to be executed periodically, cleaning up remote branches that have already been merged into the main branches (such as "test," "master," and "dev").
## Requeriments
* Git
* Nodejs
## Installation
Pull from repository.
```
$ git clone https://gitea.verdnatura.es/guillermo/git-branch-clean.git
```
Run this commands on project root directory to install Node dependencies.
```
$ npm install
```
## Built With
* [Git](https://git-scm.com/)
* [Nodejs](https://nodejs.org/)