mirror of
https://github.com/tj/git-extras.git
synced 2026-09-13 17:06:22 -04:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
479bdce215
2
bin/git-delete-merged-branches
Executable file
2
bin/git-delete-merged-branches
Executable file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
git branch --merged | grep -v "*" | xargs git delete-branch
|
||||
|
|
@ -67,8 +67,8 @@ repository_age() {
|
|||
echo
|
||||
echo " project : $project"
|
||||
echo " repo age :" $(repository_age)
|
||||
echo " commits :" $(commit_count)
|
||||
echo " active :" $(active_days) days
|
||||
echo " commits :" $(commit_count)
|
||||
if test "$commit" = ""; then
|
||||
echo " files :" $(file_count)
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue