It is a basic git version command required to push code in github
git init
git status
git add .
git commit -m "Your commit message here"
git remote add origin https://github.com/IotchulindraRai/Javascript-interview-.git
git remote -v
git init
git clone <repository_url>
git status
git add <file_name>
git add .
git commit -m "Your commit message here"
git log
git branch <branch_name>
git checkout <branch_name>
git checkout -b <new_branch_name>
git merge <branch_name>
git fetch
git pull
git push origin <branch_name>
git restore <file_name>
git checkout -- <file_name>
git tag -a <tag_name> -m "Your tag message" <commit_hash>
git tag
git diff <commit_hash_1> <commit_hash_2>
git clean -fd These commands cover a range of Git operations that are commonly used in software development workflows. Remember to adapt these commands based on your specific use case and workflow.