totten / git-scan
CLI tool for scanning/updating git repos
Installs: 2 784
Dependents: 0
Suggesters: 0
Security: 0
Stars: 33
Watchers: 6
Forks: 7
Open Issues: 4
Requires
- php: >=7.2
- symfony/console: ^4.4
- symfony/filesystem: ^4.4
- symfony/finder: ^4.4
- symfony/process: ^4.4
- dev-master
- 2022-07-15
- 2020-08-05
- 2020-07-16
- 2019-10-31
- 2019-04-08
- 2017-06-28
- 2017-05-24
- 2017-01-24
- 2017-01-02
- 2016-06-01
- 2016-04-28
- 2016-04-23.1
- 2016-04-23
- 2016-04-21
- 2016-04-04
- 2016-04-02
- 2016-04-01.1
- 2016-04-01
- 2014-01-14
- 2014-01-03
- dev-dependabot/composer/symfony/process-5.4.46
- dev-master-ci
- dev-master-gunk
- dev-master-tmpdir
This package is auto-updated.
Last update: 2024-11-06 18:48:25 UTC
README
Git-scan is designed for users who have many overlapping git repositories -- for example, developers who work with "composer" or "drush-make" may build out working directories which include half a dozen or more repos. Key features:
- Zero configuration
- Works with deeply nested repositories
- Filters and displays repositories based on their status ("git scan status")
- Performs safe (fast-forward) updates on repositories when valid ("git scan update")
- Executes custom commands ("git scan foreach -c '...'")
- Agnostic to the build system (eg works equally well with "composer", "drush-make", and manually-written build scripts)
- Agnostic to the branch/submission/review process (eg works with personal read/write repos as well as GitHub repos that require pull-requests)
Limitations:
- IO-intensive -- Performs filesystem scan and does not cache results
The concepts and use-case are described in more depth in the blog post, Developer Tip: Managing Multiple Git Repos
Download
git-scan is distributed in PHAR format, which is a portable executable file (for PHP). It should run on most Unix-like systems where PHP 7.2+ is installed.
Simply download git-scan to somewhere in your PATH, and make it executable, eg.
cd /usr/local/bin # or wherever else you want it to go, such as ~/bin sudo curl -LsS https://download.civicrm.org/git-scan/git-scan.phar -o git-scan sudo chmod +x git-scan
Examples
me@localhost:~/drupal-demo$ git scan st [[ Finding repositories ]] [[ Checking statuses ]] 5/5 [============================] 100% [[ Results ]] +--------+---------------------------------------------------------+--------------+---------------------+ | Status | Path | Local Branch | Remote Branch | +--------+---------------------------------------------------------+--------------+---------------------+ | S | drupal-demo/sites/all/modules/civicrm | master | upstream/master | | | drupal-demo/sites/all/modules/civicrm/drupal | 7.x-master | upstream/7.x-master | | FMN | drupal-demo/sites/all/modules/civicrm/packages | master | upstream/master | | | drupal-demo/sites/all/modules/contrib/civicrm_developer | master | origin/master | +--------+---------------------------------------------------------+--------------+---------------------+ [F] Fast-forwards are not possible [M] Modifications have not been committed [N] New files have not been committed [S] Stash contains data me@localhost:~/drupal-demo$ git scan up [[ Finding repositories ]] [[ Fast-forwarding ]] Fast-forward drupal-demo/sites/all/modules/civicrm (master <= upstream/master)... Fast-forward drupal-demo/sites/all/modules/civicrm/drupal (7.x-master <= upstream/7.x-master)... Skip drupal-demo/sites/all/modules/civicrm/packages: Cannot be fast-forwarded Fast-forward drupal-demo/sites/all/modules/contrib/civicrm_developer (master <= origin/master)... me@localhost:~/drupal-demo$ git scan foreach -c 'echo "This is $(pwd)."; echo "The relative path is $path."; echo' This is /home/me/drupal-demo/sites/all/modules/civicrm. The relative path is sites/all/modules/civicrm/. This is /home/me/drupal-demo/sites/all/modules/civicrm/drupal. The relative path is sites/all/modules/civicrm/drupal/. This is /home/me/drupal-demo/sites/all/modules/civicrm/packages. The relative path is sites/all/modules/civicrm/packages/. This is /home/me/drupal-demo/sites/all/modules/contrib/civicrm_developer. The relative path is sites/all/modules/contrib/civicrm_developer/. me@localhost:~/drupal-demo$ git scan foreach -c 'git pull --rebase' -v [[ Finding repositories ]] [[ /home/me/drupal-demo/sites/all/modules/civicrm ]] STDOUT Current branch master is up to date. [[ /home/me/drupal-demo/sites/all/modules/civicrm/drupal ]] STDOUT Current branch 7.x-master is up to date. [[ /home/me/drupal-demo/sites/all/modules/civicrm/packages ]] STDERR Cannot pull with rebase: You have unstaged changes. STDERR Please commit or stash them. [[ /home/me/drupal-demo/sites/all/modules/civicrm/packages: exit code = 1 ]] [[ /home/me/drupal-demo/sites/all/modules/contrib/civicrm_developer ]] STDOUT Current branch master is up to date. me@localhost:~/drupal-demo$ git scan am https://github.com/example/mymodule/pull/1234 In "sites/all/modules/mymodule/", the current branch is "master" based on "origin/master". What would you like to do it? [keep ] Keep the current branch "master" along with any local changes. Apply patches on top. [rebuild] Rebuild the branch "master" based on "origin/master". Destroy any local changes. Apply changes on top. [new ] Create a new branch "merge-master-20160411152732" based on "origin/master". Apply changes on top. [abort ] Abort the auto-merge process. (default) > new
Configuration
You may optionally create a file, ~/.git-scan.json
, to customize the
behavior. Supported options:
excludes
: An array of path names to skip when scanning (e.g..svn
or.hg
).
Development: Unit-Tests
If you have phpunit 8.x / 9.x, then you can run the test suite. For example:
$ composer create-project totten/git-scan
$ cd git-scan
$ phpunit
PHPUnit 8.5.15 by Sebastian Bergmann.
Configuration read from /home/me/src/git-scan/phpunit.xml.dist
.................................................
Time: 2 seconds, Memory: 6.50Mb
OK (49 tests, 121 assertions)
The helper ./scripts/test.sh
is a small wrapper which will download and
execute a suitable version of phpunit
.
Development: Build (PHAR)
If you are developing new changes to git-scan
and want to create a new
build of git-scan.phar
from source, you should have
git
, composer
, and
box
.
$ git clone https://github.com/totten/git-scan
$ cd git-scan
$ composer install
$ which box
/usr/local/bin/box
$ php -dphar.readonly=0 /usr/local/bin/box build
The helper ./scripts/build.sh
is small wrapper which will download and
execute a suitable version of box
.