From cf859ba0d04e108688515c9297874bbdc4cb4aee Mon Sep 17 00:00:00 2001 From: Jaap Marsman Date: Mon, 6 Mar 2023 18:17:23 +0800 Subject: [PATCH] Continuing work --- .gitignore | 27 +++++++++++++++++++++++++++ makefile | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e6365f2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# to exclude Obsidian workspace settings (including plugin and hotkey configurations) +.obsidian/* + +# OR only to exclude workspace cache +.obsidian/workspace/* + +# Exclude plugins +.obsidian/plugins/* + +# Exclude consultant specific files "personal" +05*-*Personal/ + +# Exclude Day Planner directory placed in vault root +Day*Planners/* + +# This file is used to keep track of last auto backup/pull +.obsidian-git-data + +# Exclude Untitled Notes +Untitled* +# Exclude "bad" names +null* + +# Add below lines to exclude OS settings and caches +.trash/ +.DS_Store +makefile \ No newline at end of file diff --git a/makefile b/makefile index c10e7c8..bb33335 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ git: git add -A - git commit -m "$m" + git commit -m "Continuing work" git push