Git Clientλ︎
Git binary is available in most good operating systems or from Git SCM website
Quick Startλ︎
Configure Git identity
Anonymise email for user
GitHub user account Settings > Emails has an option to use a @users.noreply.github.com
address rather than the real email address.
The noreply address should be set as the user.email
configuration.
Initialise a local repository (inside your project directlory)
Status of your files and all uncommited changes
Tell Git which changes you want to make part of the next commit (staging)
git add filename ; to add a specific file
git add . ; to add everything
git add *.HTML ; add all html files
Commit those files to create a new version
Push your code to a remote repository (eg. Github)