git config --global user.name "Sumon Paul"
git config --global user.mail "[email protected]"
git config --local user.name "Your Name Here"
git config --local user.email "[email protected]"
git config --list
git branch
git init
git add --all / specefic file - add for Staging area
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/SumonPaul18/SumonPortfolio.git
git remote show origin
git push -u origin main
git checkout -b [new branch name]
git checkout [brunch-name]
git merge <branch-name>
Show commit log shortly
git log
Show commit log details
git log --patch
Show only commit message
git log --oneline
Git show 6bab78a
git show [commit code]
git clone --single-branch --branch BranchName RepoUrl
git clone --single-branch --branch easylinux-v.1 https://github.com/SumonPaul18/easylinux.git