blob: 6e7f05a585d34ea3c0c4182392b6f2523e007e6f (
plain)
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
|
#!/bin/bash
# Add a pattern into gitignore
function hydra_git_ignore {
if [ ! -z "$BASEDIR/.gitignore" ]; then
echo $1 > $BASEDIR/.gitignore
hydra_exec git $BASEDIR add .gitignore
else
if ! grep -q -e "^$1$" $BASEDIR/.gitignore; then
echo $1 >> $BASEDIR/.gitignore
fi
fi
}
# Check if a folder is inside a git repository
function hydra_is_git {
if [ -z "$1" ]; then
false
elif [ ! -d "$1" ]; then
false
elif [ -d "$1/.git" ]; then
true
else
cwd="`pwd`"
cd $1 && git="`git status &> /dev/null`" && cd $cwd
if [ "$git" != "128" ]; then
true
else
false
fi
fi
}
|