From ebce40b46bdafa5c99bcb9685a8a076f3619b75a Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Tue, 10 Sep 2024 22:56:07 +0200 Subject: [PATCH] updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2c354c9c9f..259614f391c 100644 --- a/README.md +++ b/README.md @@ -751,7 +751,7 @@ See also [Knowledge Base notes for Hadoop](https://github.com/HariSekhon/Knowled - `git/*.sh` - [Git](https://git-scm.com/) scripts: - `precommit_run_changed_files.sh` - runs pre-commit on all files changed on the current branch vs the default branch. Useful to reproduce `pre-commit` checks that are failing in pull requests to get your PRs to pass - - `git_diff_commit.sh` - runs git diff and commit with a generic `updated $filename` commit message for each file in the files or directories given, or `$PWD` if none given. Super convenient for fast commits on command line, and in vim and IDEs via hotkeys + - `git_diff_commit.sh` - runs git diff and commit with a generic `updated $filename` commit message for each file in the files or directories given if they have changed, or all committed files under `$PWD` if no args are given. Super convenient for fast commits on the command line, and in vim and IDEs via hotkeys - `git_branch_delete_squash_merged.sh` - carefully detects if a squash merged branch you want to delete has no changes with the default trunk branch before deleting it. See [Squash Merges](https://github.com/HariSekhon/Knowledge-Base/blob/main/git.md#squash-merges-require-force-deleting-branches) in knowledge-base about why this is necessary. - `git_foreach_branch.sh` - executes a command on all branches (useful in heavily version branched repos like in my [Dockerfiles](https://github.com/HariSekhon/Dockerfiles) repo)