This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-06-25
Channels
- # announcements (3)
- # babashka (54)
- # beginners (31)
- # biff (14)
- # calva (14)
- # clerk (10)
- # cljdoc (6)
- # clojure (31)
- # clojure-gamedev (1)
- # conjure (1)
- # datomic (9)
- # dev-tooling (7)
- # funcool (4)
- # honeysql (8)
- # hoplon (8)
- # hyperfiddle (38)
- # re-frame (2)
- # releases (3)
- # sci (7)
- # shadow-cljs (2)
- # sql (9)
- # vim (3)
Hey, does anyone else have the problem that git always reports chinook.db being changed. It prevents me from performing certain git operations ;/
I feel like there’s some CRLF conversion going on… If someone is not having this problem could you tell me your git version so I can roll back 😅
i’ve tried stashing btw..
I’ve only had this issue in the Clerk repo, and I’m trying to hack on Clerk so I think so 🙂
👍 2
workaround for now:
$ git commit -m 'WORKAROUND: remove chinook.db (see '
I did this in my git config:
[core]
autocrlf = "input"
it stopped that for me. I believe that setting is "correct" and is giving me desired behavior on m1 air running macos
thanks 🥳