From c43a8d4525b0e5a07b36d1b4b66cd18f0509ca56 Mon Sep 17 00:00:00 2001 From: iosmanthus Date: Fri, 22 Apr 2022 15:25:11 +0800 Subject: [PATCH] update all the branch of proto while precompiling to avoid commit miss Signed-off-by: iosmanthus --- dev/proto.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev/proto.sh b/dev/proto.sh index 5d8dbd4b171..8d8a5b184a3 100755 --- a/dev/proto.sh +++ b/dev/proto.sh @@ -31,6 +31,7 @@ cd "$TIKV_CLIENT_HOME" || exit if [ -d "$kvproto_dir" ]; then git -C ${kvproto_dir} fetch -p + git pull --all else git clone https://github.com/pingcap/kvproto ${kvproto_dir} fi @@ -38,6 +39,7 @@ git -C ${kvproto_dir} checkout ${kvproto_hash} if [ -d "$raft_rs_dir" ]; then git -C ${raft_rs_dir} fetch -p + git pull --all else git clone https://github.com/pingcap/raft-rs ${raft_rs_dir} fi @@ -45,6 +47,7 @@ git -C ${raft_rs_dir} checkout ${raft_rs_hash} if [ -d "$tipb_dir" ]; then git -C ${tipb_dir} fetch -p + git pull --all else git clone https://github.com/pingcap/tipb ${tipb_dir} fi