This commit is contained in:
Luk
2024-02-23 13:27:18 +08:00
parent 9022b2899d
commit 5753b72fa3
4 changed files with 10 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
#!/bin/bash
echo === Merge [.gitignore_global] and [.gitignore_local] to [.gitignore] ===
curl -sSL https://git.faronear.org/npm/sysconfig/raw/branch/main/nixhome/.gitignore_global > .gitignore && cat .gitignore_local >> .gitignore
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