mirror of
https://gitee.com/dromara/orion-visor.git
synced 2026-05-14 04:22:08 +08:00
10 lines
126 B
Bash
10 lines
126 B
Bash
#!/bin/bash
|
|
# 清空
|
|
git clean -df
|
|
# 切换到 HEAD
|
|
git reset --hard HEAD
|
|
# 拉取远程
|
|
git pull
|
|
# 查看日志
|
|
git log -n 1
|