We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855360b commit 4103bd0Copy full SHA for 4103bd0
content/Obsidian環境構築.md
@@ -32,8 +32,7 @@ tags:
32
- 会員登録不要で無料で使えるから
33
- ローカルLLMを動かせるから
34
35
-他の競合ツールも調べたけど、`Obsidian`は `VS Code`、`OneNote`、`draw.io`の良いところを混ぜたような感じで、
36
-無料にも関わらず自分の求めてることが全てできそうだった。
+他の競合ツールも調査しましたが、`Obsidian`は`VS Code`、`OneNote`、`draw.io`の利点を兼ね備えており、無料で自分の求める機能が全て実現できると判断しました。
37
38
39
## 何の媒体使ってるの
@@ -121,13 +120,15 @@ git config core.autocrlf false
121
120
git config --global core.autocrlf false
122
```
123
#### .gitattributesに記載
+`.gitattributes`ファイルに以下の設定を追記します。
124
125
# コミット時に改行コードをLFに変換
126
* text eol=lf
127
128
-↓
+
129
+設定を反映させるには、以下のコマンドを実行してGitの設定を再読み込みしてください。
130
```bash
-# カレントディレクトりのgitの設定を再読み込み
131
+# カレントディレクトリのgitの設定を再読み込み
132
git rm --cached -r .
133
git reset
134
0 commit comments