Ai
2 Star 7 Fork 0

Git工具集/git-secrets

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 752 Bytes
一键复制 编辑 原始数据 按行查看 历史
PREFIX ?= /usr/local
MANPREFIX ?= "${PREFIX}/share/man/man1"
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " test to perform unit tests."
@echo " man to build the man file from README.rst"
@echo " install to install. Use PREFIX and MANPREFIX to customize."
# We use bats for testing: https://github.com/sstephenson/bats
test:
LANG=C test/bats/bin/bats test/
# The man page is completely derived from README.rst. Edits to
# README.rst require a rebuild of the man page.
man:
rst2man.py README.rst > git-secrets.1
install:
@mkdir -p ${DESTDIR}${MANPREFIX}
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f git-secrets ${DESTDIR}${PREFIX}/bin
@cp -f git-secrets.1 ${DESTDIR}${MANPREFIX}
.PHONY: help test man
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/vcs-all-in-one/git-secrets.git
git@gitee.com:vcs-all-in-one/git-secrets.git
vcs-all-in-one
git-secrets
git-secrets
master

搜索帮助