Kubernetes repo analyzed with gitm.
git log --numstat --no-merges | ~/workspace/gitdm/gitdm -u -s -a -n -o results -b ~/workspace/gitdm -l 25
Source tree analysis includes generated, third-party, and vendored dependency files.
Kubernetes repo analyzed with gitm.
git log --numstat --no-merges | ~/workspace/gitdm/gitdm -u -s -a -n -o results -b ~/workspace/gitdm -l 25
Source tree analysis includes generated, third-party, and vendored dependency files.
| #Add the following lines to your `~/.bashrc` to run "rhclone $app_name $cart_type $git_uri" | |
| # in order to quickly initialize an openshift gear | |
| # with an openshift-compatible cart (via a git repo uri). | |
| # | |
| # 'git' and 'rhc' command-line tools are required: | |
| function rhclone() | |
| { | |
| rhc app create $1 $2 && cd $1 && git remote add upstream -m master $3 && git pull -s recursive -X theirs upstream master && git push | |
| } | |
| export rhclone |
#Drupal on Openshift There is an existing repo for a quick install of Drupal 7 over at https://github.com/openshift/drupal-example. This didn't really cut the deal for me because the example was Drupal 7, I needed Drupal 6 and I wasn't happy about the way it is managed codewise.
I needed this:
| #!/bin/bash | |
| # | |
| # Watch current directory (recursively) for file changes, and execute | |
| # a command when a file or directory is created, modified or deleted. | |
| # | |
| # Written by: Senko Rasic <senko.rasic@dobarkod.hr> | |
| # | |
| # Requires Linux, bash and inotifywait (from inotify-tools package). | |
| # | |
| # To avoid executing the command multiple times when a sequence of |