From 06433d96a92f98ce30e157ad5b1b9d0f76f2a0cd Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Wed, 10 Aug 2022 18:03:13 +0700 Subject: [PATCH] feat: add gitignore --- docs/2022-08-10-gitignore.html | 19 ++++++++++++++++++ docs/index.html | 2 +- posts/2022-08-10-gitignore.md | 36 ++++++++++++++++++++++++++++++++++ posts/index.md | 1 + 4 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 docs/2022-08-10-gitignore.html create mode 100644 posts/2022-08-10-gitignore.md diff --git a/docs/2022-08-10-gitignore.html b/docs/2022-08-10-gitignore.html new file mode 100644 index 0000000..1d6c07f --- /dev/null +++ b/docs/2022-08-10-gitignore.html @@ -0,0 +1,19 @@ +Index

gitignore

My quick check for .gitignore.

Base

# macOS
+.DS_Store
+
+# Windows
+*.exe
+
+# IntelliJ
+.idea/
+
+# VSCode
+.vscode/
+

Go

# Go
+# Test coverage
+coverage.out
+
+# Should ignore vendor
+vendor
+

Python

venv
+
Feel free to ask me via email \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index c02c42b..976d979 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -Index

Index

This is where I dump my thoughts.

Feel free to ask me via email \ No newline at end of file +Index

Index

This is where I dump my thoughts.

Feel free to ask me via email \ No newline at end of file diff --git a/posts/2022-08-10-gitignore.md b/posts/2022-08-10-gitignore.md new file mode 100644 index 0000000..4a2e816 --- /dev/null +++ b/posts/2022-08-10-gitignore.md @@ -0,0 +1,36 @@ +# gitignore + +My quick check for `.gitignore`. + +## Base + +```txt +# macOS +.DS_Store + +# Windows +*.exe + +# IntelliJ +.idea/ + +# VSCode +.vscode/ +``` + +## Go + +```txt +# Go +# Test coverage +coverage.out + +# Should ignore vendor +vendor +``` + +## Python + +```txt +venv +``` diff --git a/posts/index.md b/posts/index.md index bac0269..e6c4b6f 100644 --- a/posts/index.md +++ b/posts/index.md @@ -9,3 +9,4 @@ This is where I dump my thoughts. - [Migrate to buf](2022-07-19-migrate-to-buf) - [SQL](2022-07-31-sql) - [Experiment go](2022-07-31-experiment-go) +- [gitignore](2022-08-10-gitignore)