mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-13 05:12:35 +08:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
dir_shell=$(dirname $(readlink -f "$0"))
|
|
dir_root=$dir_shell
|
|
|
|
cd $dir_root
|
|
git fetch --all
|
|
git reset --hard origin/A1
|
|
echo "自动修复完毕,无异常"
|