-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
gitgc.sh
executable file
·35 lines (28 loc) · 1.24 KB
/
gitgc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#! /usr/bin/env bash
###################################################################################################
###################################################################################################
### Git compression script for Happy-Dude's dotfiles repository
###
### Author: Stanley Chan
### Github: https://github.com/Happy-Dude/dotfiles.git
### Version: 14 April 2013
###
###################################################################################################
###################################################################################################
# Check if Git is installed update all submodules
`which git` --version 2>&1 >/dev/null # improvement by tripleee
GIT_IS_AVAILABLE=$?
if [ $GIT_IS_AVAILABLE -eq 0 ]; then
GIT_PATH=`which git`
GIT_OPTS="submodule foreach --recursive"
echo "Running git prune"
$GIT_PATH remote prune origin
$GIT_PATH $GIT_OPTS $GIT_PATH $GIT_OPTS $GIT_PATH remote prune origin
$GIT_PATH $GIT_OPTS $GIT_PATH remote prune origin
echo "Running git gc"
$GIT_PATH gc
$GIT_PATH $GIT_OPTS $GIT_PATH $GIT_OPTS $GIT_PATH gc
$GIT_PATH $GIT_OPTS $GIT_PATH gc
else
echo "Git not found\; please get latest updates for repository submodules manually"
fi