mirror of
http://180.163.74.83:13000/zhangzhenghao/AP05.git
synced 2025-12-12 15:04:29 +00:00
6 lines
140 B
Plaintext
Executable File
6 lines
140 B
Plaintext
Executable File
git branch -r | grep -v '\->' | while read remote;
|
|
do
|
|
git branch --track "${remote#origin/}" "$remote";
|
|
done
|
|
git fetch --all
|
|
git pull --all |