diff options
author | Vikas Kushwaha <dev@vikas.rocks> | 2025-06-01 20:48:49 +0530 |
---|---|---|
committer | Vikas Kushwaha <dev@vikas.rocks> | 2025-06-01 20:48:49 +0530 |
commit | 132ec769505533c24bd06f6604913fdc1db6fe35 (patch) | |
tree | c21a0f93fad8f12b3901ea21a2024a9df2e1622b /.local/bin/development/gitignore | |
parent | 0d397e4d3d204a1e016c0863815f0b5dc516c46b (diff) |
git updates
Diffstat (limited to '.local/bin/development/gitignore')
-rwxr-xr-x | .local/bin/development/gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.local/bin/development/gitignore b/.local/bin/development/gitignore new file mode 100755 index 0000000..d78ff99 --- /dev/null +++ b/.local/bin/development/gitignore @@ -0,0 +1,6 @@ +#!/bin/sh + +# gi - edit the Git Ignore file of current repo + +TOPLEVEL="$(git rev-parse --show-toplevel)" || exit +find "$TOPLEVEL" -name ".gitignore" | xargs -r nvim -p |