File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -146,8 +146,11 @@ git checkout -b <branch-name> <commit-hash>
146146
147147# #####################################################################
148148
149+ # ## remove a file history from the git repository
150+
149151git ls-files
150152
153+ export FILE_PATH=" /path/to/file"
151154git filter-branch --force --index-filter \
152155' git rm --cached --ignore-unmatch ${FILE_PATH}' \
153156--prune-empty --tag-name-filter cat -- --all
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ go run main.go
44
55# #####################################################################
66
7+ # ## test
8+
9+ go clean -testcache
10+
711go test ./...
812go test ./... -v -coverprofile=cover.out
913
Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ eval "$(atuin init zsh --disable-up-arrow)"
77source ${HOMEBREW_PREFIX} /opt/git-extras/share/git-extras/git-extras-completion.zsh
88source ${HOMEBREW_PREFIX} /share/zsh-autosuggestions/zsh-autosuggestions.zsh
99source ${HOMEBREW_PREFIX} /share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
10- source ${HOME} /tools/zsh-plugins/alias.plugin.zsh
11- source ${HOME} /tools/zsh-plugins/docker.plugin.zsh
12- source ${HOME} /tools/zsh-plugins/docker-compose.plugin.zsh
10+ source ${HOME} /tools/zsh-plugins/load-zsh-plugins.sh
1311FPATH=${HOMEBREW_PREFIX} /share/zsh-completions:${FPATH}
1412autoload -Uz compinit
1513compinit -C
@@ -31,6 +29,7 @@ alias vi="nvim"
3129alias vim=" nvim"
3230alias vimdiff=" nvim -d"
3331alias cat=" bat --style=plain --paging=never"
32+ alias fl=" open -b com.binarynights.forklift-setapp"
3433alias mysql=" /opt/homebrew/opt/mysql-client@8.4/bin/mysql"
3534alias mysqldump=" /opt/homebrew/opt/mysql-client@8.4/bin/mysqldump"
3635
You can’t perform that action at this time.
0 commit comments