Working with Git
Pre-requisites: git is installed on your machine having admin rights. Git – Downloads (git-scm.com) Exercise Caution: Understand the git commands and their outcomes; before running them on your machine Quick setup steps: Identifying yourself for the codes you modify git config –global user.name “John doe”git config–global user.email jdoe@example.comgit config –list 4. git status 5. git add …
