I'm still new to git and I'm reading a lot in the docs trying to figure out the practicals. When want to store my files onto the server , I go like this.
git add . git commit --message "Poof goes the dynamite" git push repo stuff I called my remote repo instead of origin and stuff is my branch (like dev or development).
It works. But I wonder if this is the appropriate approach or if I'm missing the correct way to use git. It seems so mundane and repetitive to keep adding the files over and over again. It feels like if saving a modified file should already trigger the version control mechanism to mark its status as commitable.