Thread (1 message) 1 message, 1 author, 2016-06-15

Re: Commiting automatically

From: Matthieu Moy <hidden>
Date: 2016-06-15 22:49:45

Maaartin [off-list ref] writes:
# the first parent should be autocom
parent1="-p $(git show-ref -s refs/heads/autocom)"
# needed for the very first use
test -f .git/refs/heads/autocom || parent1=""
Don't use the content of .git/refs/ directly. Git can pack them, and
you can have a branch autocom packed in .git/info/refs without having it in
.git/refs/*

perhaps

parent1=$(git show-ref -s refs/heads/autocom)
if [ "$parent1" != "" ]; then
	parent1="-p $parent1"
fi

?

-- 
Matthieu Moy
http://www-verimag.imag.fr/~moy/
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help