PHPackages                             mastani/nova-git-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. mastani/nova-git-manager

ActiveLibrary

mastani/nova-git-manager
========================

Laravel Nova Git Manager tool.

0.0.1(4y ago)415MITJavaScriptPHP &gt;=7.1.0

Since Apr 16Pushed 4y ago1 watchersCompare

[ Source](https://github.com/mastani/nova-git-manager)[ Packagist](https://packagist.org/packages/mastani/nova-git-manager)[ RSS](/packages/mastani-nova-git-manager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Laravel Nova Git Manager Tool
=============================

[](#laravel-nova-git-manager-tool)

This is a package for [Laravel Nova](https://nova.laravel.com/) which allows you to easily manage your Git.

[![Total Downloads](https://camo.githubusercontent.com/cd2e902a6b179ef1b7ebe45b8dfe58d660e49298be8651597aa31325e577a9f6/68747470733a2f2f706f7365722e707567782e6f72672f6d617374616e692f6e6f76612d6769742d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/mastani/nova-git-manager)[![Latest Stable Version](https://camo.githubusercontent.com/44bb5aae80e4e57bd44854cb989886edf34896ca2cfc919ba41a78d346323eb2/68747470733a2f2f706f7365722e707567782e6f72672f6d617374616e692f6e6f76612d6769742d6d616e616765722f762f737461626c65)](https://packagist.org/packages/mastani/nova-git-manager)[![Latest Unstable Version](https://camo.githubusercontent.com/e5c7a718d73fb09fc0d947638776882a98443d97123fa595d03d62a397c6e450/68747470733a2f2f706f7365722e707567782e6f72672f6d617374616e692f6e6f76612d6769742d6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/mastani/nova-git-manager)[![License](https://camo.githubusercontent.com/621040ff1dbbab0afb449403b64a20f9c07441e54ea75e9e0b56a6eb146a5d1f/68747470733a2f2f706f7365722e707567782e6f72672f6d617374616e692f6e6f76612d6769742d6d616e616765722f6c6963656e7365)](https://packagist.org/packages/mastani/nova-git-manager)

Screeenshots
------------

[](#screeenshots)

[![Laravel Nova Git Manager Tool](https://raw.githubusercontent.com/mastani/nova-git-manager/master/screenshot.jpg "Laravel Nova Git Manager Tool")](https://raw.githubusercontent.com/mastani/nova-git-manager/master/screenshot.jpg)

Requirements
------------

[](#requirements)

- PHP &gt;= 7.1
- [Laravel](https://laravel.com/) application with [Laravel Nova](https://nova.laravel.com/) installed
- `shell_exec` function enabled (For running git log/checkout/pull commands). [See usage](https://github.com/mastani/nova-git-manager/blob/3412c1e74014a33966e59be8325e6d3c67396bbd/src/Http/Controllers/NovaGitController.php#L15)

### Installation

[](#installation)

Install the package via composer:

```
$ composer require mastani/nova-git-manager
```

Register the tool in the `tools` method of the `NovaServiceProvider`:

```
// app/Providers/NovaServiceProvider.php

// ...

public function tools()
{
    return [
        // ...
        new \Mastani\NovaGitManager\NovaGitManager,
    ];
}

```

Customizations (Optional)
-------------------------

[](#customizations-optional)

If you want to change the "Git Path" or "Commit URL" you can publish the config file:

```
php artisan vendor:publish --provider="Mastani\NovaGitManager\ToolServiceProvider" --tag="config"

```

Now head over to "config/nova-git-manager.php" and you can change the value:

```
/*
|--------------------------------------------------------------------------
| Git root path
|--------------------------------------------------------------------------
|
| Determine the default Git root path
| Default is your project base path.
|
*/

'git_path' => base_path(),

/*
|--------------------------------------------------------------------------
| Commit base url
|--------------------------------------------------------------------------
|
| Determine the default Git commit url
| Example for Github: https://github.com/your_username/your_repository/commit/%s
| Example for Gitlab: https://gitlab.com/your_username/your_repository/-/commit/%s
|
*/

'commit_url' => 'https://github.com/your_username/your_repository/commit/%s'

```

Contributors
------------

[](#contributors)

[Amin Mastani](https://github.com/mastani)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1485d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9569c30e521a08a418ced37d11b2ec88348678809e67659ee6a3318fd11f0e52?d=identicon)[mastani](/maintainers/mastani)

---

Top Contributors

[![mastani](https://avatars.githubusercontent.com/u/7414851?v=4)](https://github.com/mastani "mastani (4 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/mastani-nova-git-manager/health.svg)

```
[![Health](https://phpackages.com/badges/mastani-nova-git-manager/health.svg)](https://phpackages.com/packages/mastani-nova-git-manager)
```

###  Alternatives

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[coreproc/nova-notification-feed

A Laravel Nova package that adds a notification feed in your Nova app.

10149.1k](/packages/coreproc-nova-notification-feed)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[cybercog/laravel-nova-ban

A Laravel Nova banning functionality for your application.

40199.8k](/packages/cybercog-laravel-nova-ban)[insenseanalytics/nova-server-monitor

A Laravel Nova tool for Spatie's Server Monitor library.

6546.9k](/packages/insenseanalytics-nova-server-monitor)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
