এই ভিডিওতে আমরা Git workflow এর essential commands ধাপে ধাপে দেখেছি।
মূল commands:
git init– initialize a Git repository (run only the first time)git add– stage files for the next commitgit commit -m "msg"– save staged changes with a messagegit log– view commit historygit log --oneline�– single line(short) loggit diff– see changes since the last commitgit status– view local changes