Configure the author name and email address to be used with your commits.
Note that Git strips some characters (for example Read More
Git Command git init Read More
List the files you've changed and those you still need to add or commit:
When you want Git to track a file in a repository, you must explicitly add it to the repo, which Read More
Commit changes to head (but not yet to the remote repository):
Commit any files you've added with git Read More
If you haven't connected your local repository to a remote server, add the server to be able to push to Read More
Send changes to the master branch of your remote repository:
Create a new branch and switch to it:
git checkout -b
Switch from one branch to another:
git checkout
List all the Read More