rename *ignore_global/local to *ignore.global/local.txt

This commit is contained in:
luk
2024-04-20 11:55:00 +08:00
parent 7d3cf98072
commit 30e0c2551a
12 changed files with 39 additions and 137 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
echo === Merge remote [.gitignore_global] and local [.gitignore_local] to [.gitignore] ===
curl -sSL https://git.faronear.org/npm/sysconfig/raw/branch/main/nixhome/.gitignore_global > .gitignore
if [ -f .gitignore_local ]; then cat .gitignore_local >> .gitignore; fi;
echo === Merge remote [.gitignore.global.txt] and local [.gitignore.local.txt] to [.gitignore] ===
curl -sSL https://git.faronear.org/npm/sysconfig/raw/branch/main/nixhome/.gitignore.global.txt > .gitignore
if [ -f .gitignore.local.txt ]; then cat .gitignore.local.txt >> .gitignore; fi;
echo