From 76351dbfbefb05040d74542d357afb60825447a6 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 13 Sep 2024 21:40:12 +0200 Subject: [PATCH] more explanations --- content/version-control/practical-advice.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/version-control/practical-advice.md b/content/version-control/practical-advice.md index 2e2710e..5e4c460 100644 --- a/content/version-control/practical-advice.md +++ b/content/version-control/practical-advice.md @@ -126,9 +126,11 @@ which files might not be tracked, etc. - Committing **unrelated changes** together. -- Postponing commits because the changes are "unfinished"/"ugly". +- Postponing commits because the changes are "unfinished"/"ugly" -> better ugly + commits than no commits. - When working with branches: - Not updating your branch before starting new work. - Too ambitious branch which risks to never get completed. - Over-engineering the branch layout and safeguards in small projects. + - Working on unrelated things on the same branch.