My course completion certificate for "HTML, JavaScript, & Bootstrap - Certification Course" http://ude.my/UC-69440baa-9011-45eb-9d05-4982bdaf34e0 via @udemy
== Equal to
=== Equal Value & Equal Type
!= Not Equal
!== Not Equal Value & Not Equal Type
> Greater then
< Less then
>= Greater then or Equal to
<= Less then or Equal to
git add . //Command to add File - The git add command adds a change in the working directory to the staging area. It tells Git that you want to include updates to a particular file in the next commit.
git commit -m "Name-commit" //Command to add tag-Name-commit - The git commit command captures a snapshot of the project's currently staged changes.
git push //Command to uploads New-File - The git push command is used to upload local repository content to a remote repository.
git pull //Command to fetch and download content from a remote repository and immediately update the local repository to match that content.
