Git and GitHub are essential tools in modern software development, enabling version control and collaboration among developers.
Git is a distributed version control system (DVCS) that helps track changes in source code during software development.
Configuring user information used across all local repositories
Define the author name to be used for all commits by the current user.
git config --global user.name <Username>
Define the author email to be used for all commits by the current user.
git config --global user.email <User_email>
Configuring user information, initializing and cloning repositories
initialize an existing directory as a Git repository
git init