diff --git a/why_use_git.md b/why_use_git.md index 848e8dea532336eb3b219623639e19bb6a7c6ee4..ebbdd10c371d72e40d451f2a5b5603a509a3c614 100644 --- a/why_use_git.md +++ b/why_use_git.md @@ -1,6 +1,12 @@ # Why use git? -* keep the changes you made over time -* allow you to backtrack (if necessary) and undo those changes -* easily add contributions of your collaborators to the main code base +* No need to fully rewrite code; reuse code and save time. +* Keep the changes you made over time +* Allow you to backtrack (if necessary) and undo those changes +* Easily add contributions of your collaborators to the main code base +note: + +Other points to mention: +* git shall not be considered as a nuisance, but as a tool that should help to track and trace the code. +* git is not to track performance. Not using it shows exactly the opposite.