Git Basic Workflow With Github: Setup The Project Folder
Git Basic Workflow With Github: Setup The Project Folder
A quick introduction to Git with an hands on example starting with GitHub, making local changes and back to GitHub again.
pwd
mkdir projects
cd projects
pwd
Git Configuration
Command Listing
git version
git config --global user.name "Abe Lincoln"
git config --global user.email "[email protected]"
git config --global --list