This repository has been archived on 2025-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
|
UIPATH=Tests/gui
|
|
current_time=$(shell date +%Y%m%d%H%M)
|
|
# 获得当前git的用户邮箱
|
|
current_user=$(shell git config user.email)
|
|
|
|
.PHONY:clean cc
|
|
|
|
cc:
|
|
git rm -r --cached .
|
|
git add .
|
|
git commit -m "$(current_user) batch push $(current_time)"
|
|
git push
|
|
|
|
clean:
|
|
cmd /c keilkill.bat
|
|
|
|
|