Skip to content

Commit

Permalink
add rbac func
Browse files Browse the repository at this point in the history
  • Loading branch information
kuanghua committed Oct 25, 2022
1 parent f46bb2c commit 415f541
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package top.kuanghua.basisfunc.service;

import cn.hutool.log.Log;
import com.alibaba.fastjson.JSON;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
Expand Down
17 changes: 17 additions & 0 deletions change-git-email.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
git filter-branch --env-filter '
oldEmail="kuhu8866"
newName="kuanghua"
newEmail="[email protected]"
if [ "$GIT_COMMITTER_EMAIL" = "$oldEmail" ]; then
export GIT_COMMITTER_NAME="$newName"
export GIT_COMMITTER_EMAIL="$newEmail"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$oldEmail" ]; then
export GIT_AUTHOR_NAME="$newName"
export GIT_AUTHOR_EMAIL="$newEmail"
fi
' --tag-name-filter cat -- --branches --tags

0 comments on commit 415f541

Please sign in to comment.