From ce3c677dd40eb7b9d5a967a86e691e3a83ef4d58 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Wed, 29 Mar 2023 23:57:06 -0400 Subject: Clean-up .stowrc and allow stowing gitignore I think it may be built into the software, or just a sideeffect of ignoring .git - there doesn't SEEM to be anything I can do bypass this - so the EASIEST thing to do is simply revert back to using dot-gitignore which I had before. But since there is the .config folder issue - I am going to make this the only file using dot- . Which is fine, sine .gitignore in a repo TYPICALLY is specific to that repository anyway --- .gitignore | 11 ----------- .stowrc | 5 +++-- dot-gitignore | 27 +++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 13 deletions(-) delete mode 100644 .gitignore create mode 100644 dot-gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 756b4c9..0000000 --- a/.gitignore +++ /dev/null @@ -1,11 +0,0 @@ -# vim -*.sw* - -# intellij -.idea -out - -# C -*.out - - diff --git a/.stowrc b/.stowrc index fdc4cc6..3a4f9c0 100644 --- a/.stowrc +++ b/.stowrc @@ -1,6 +1,7 @@ --dir=~/configs/dotfiles/ --target=~/ ---ignore=.git ---ignore=README.org +--dotfiles +--ignore='\.git' +--ignore=README\.org --ignore=LICENSE --verbose diff --git a/dot-gitignore b/dot-gitignore new file mode 100644 index 0000000..fe19d1c --- /dev/null +++ b/dot-gitignore @@ -0,0 +1,27 @@ +# vim +*.sw* + +# emacs +*.*~ + + +# intellij +.idea +out + +# Java +target +*.class + +# Scala +.sbt +.ivy +.bsp + +# nodejs +node_modules + +# C +*.out + + -- cgit v1.2.3-54-g00ecf