Group activity to familiarize with git
git init- initializes a git repositorygit status- shows changes made to repository, categorised by tracked/untracked.git diff- show the diff between staging and local repogit add <filename>git reset <filename>git commit -m "<descriptive message>"- commit from staging to local repogit log- display historical logs of staginggit branch <branch name>create new branchgit checkout <branch name>git merge <branch name>git branch -d <branch name>