specify the master branch when doing pull so that it becomes the default
This commit is contained in:
parent
a2aedc3871
commit
312c840448
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ if [ ! -d "$HG_DIR" ]; then
|
||||||
hg clone ${GIT_URL} "${HG_DIR}"
|
hg clone ${GIT_URL} "${HG_DIR}"
|
||||||
fi
|
fi
|
||||||
cd "${HG_DIR}"
|
cd "${HG_DIR}"
|
||||||
hg pull "${GIT_URL}"
|
hg pull -r master "${GIT_URL}"
|
||||||
hg update -c
|
hg update -c
|
||||||
# First time add entries to .hgrc (!)
|
# First time add entries to .hgrc (!)
|
||||||
# [paths]
|
# [paths]
|
||||||
|
|
Loading…
Reference in a new issue