Code Shell Hub

Git Commands to push to the new remote repository

git init

git remote add origin https://github.com/username/your-repository.git

git branch -M main

git add .

git commit -m "first commit"

git push -u origin main

Git Commands to push to the existing repository

git init

git add .

git commit -m "Your-message"

git push -u origin main

Git Commands to fetch the updates from the repository

git fetch

git merge

Unix Commands to update Chrome

# Update the package list
sudo apt update
# Upgrade Chrome to the latest version
sudo apt upgrade google-chrome-stable

Unix Commands for software update

sudo apt update
sudo apt upgrade