এই ভিডিওটি Git সিরিজের Part 3।
এখানে আমরা Windows ও Linux এ Git install করা এবং GitHub account ব্যবহার করে global config সেট করা দেখেছি।
First download and install git from here.
Configuration steps
Check Git version:
git --versionSet username:
git config --global user.name "Your Name"Set email:
git config --global user.email "youremail@example.com"Check(verify) configuration:
git config --list(optional) We can also set default code editor(e.g. vscode) but gonna use neovim
git config --global core.editor "code --wait"