mirror of https://github.com/ceph/ceph-ansible.git
contrib: It doesn't make sense to pull all tags
On certain git versions running: git pull origin --tags ends up with the following error: It doesn't make sense to pull all tags; you probably meant: git fetch --tags So removing the --tags since later in the execution we do a git fetch --tags Signed-off-by: Sébastien Han <seb@redhat.com>pull/1124/head
parent
9281a564f2
commit
0530ff86f9
|
@ -23,7 +23,7 @@ function check_existing_remote {
|
|||
}
|
||||
|
||||
function pull_origin {
|
||||
git pull origin --tags
|
||||
git pull origin master
|
||||
}
|
||||
|
||||
function reset_hard_origin {
|
||||
|
|
Loading…
Reference in New Issue