I am new to development and version control.
My present workflow to make changes to the project:
I created index.html with minimum features. Being new, I don't have enough confidence on various CSS tags that break a page, by changing something small. For now I am using Bootstrap, which is simple to use, but with limited features.
To add some new content I copy index.html to index_.html and change index.html. This is purely for a fear that if the page breaks, I instantly copy index_.html to index.html and have a sigh of relief. This is my workflow, which would change when I have a little experience.
How do I use Git just to this and nothing else for now. I don't want to copy index.html. I have already read progit and seen following posts. They seem to point to a multiple users, versions and so on. It would take me a while to reach there. But if I know Git now, I can reach there in shape.
Workflow best practice with git and github?
http://news.ycombinator.com/item?id=1826279
http://gweezlebur.com/2009/01/19/my-git-workflow.html
http://yehudakatz.com/2010/05/13/common-git-workflows/
http://reinh.com/blog/2009/03/02/a-git-workflow-for-agile-teams.html
http://nvie.com/posts/a-successful-git-branching-model/?
http://thinkvitamin.com/code/source-control/git/our-simple-git-workflow/ (I have placed all these links, so that someone knows I have read enough and does not pull this post down.)
None of them seem to answer my stupid question that is important for my evolution.