Open cmd.exe
with Admin permission and run:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco list --local-only
choco install PACKAGENAME -y
choco install nodejs-lts pnpm git github-desktop googlechrome firefox brave visualstudiocode zoom postman -y
Set path for node.js in your environment variables. To do this:
right click on MyComputer->properties->advance system setting-> Environment variables-> select & edit "Path" variable in System variables.
Add C:\Program Files\nodejs\; in path
Restart your command prompt
Type node --version in a new console window, the version number should appear as a response.
choco upgrade all -y
choco uninstall PACKAGENAME
Open PowerShell or CMD Prompt in administrator mode & run:
wsl --install
ssh-keygen -t rsa -C "raoakif"
npm install touch-cli -g
Go to:
C:\Program Files (x86)\Microsoft\Edge\Application\102.0.1245.44\Installer
Open cmd prompt: run
setup.exe --uninstall --system-level --verbose-logging --force-uninstall
Open Powershell with Administrator Access: Type below command,
Set-ExecutionPolicy RemoteSigned
Select Y for Yes
All Set !!!
git init
git add .
git status
git commit -m 'your message'
OR
git commit -a
git remote add origin 'your_url_name'
git push -u origin master
Create & Push on New Branch
git pull
git status
git branch list
git checkout NEW_BRANCH
git checkout -b NEW_BRANCH
git push origin NEW_BRANCH
git push # if on the same branch
git push --set-upstream origin BRANCH_NAME // If Upstream never created
git branch -a
git remote add [name_of_your_remote] NEW_BRANCH
git push [name_of_your_new_remote] [url]
npm i <dependencies-names> -D // From devDependencies to Dependencies
npm i <dependencies-names> -P // From Dependencies to devDependencies