Important Commands


General Commands

  • CD: Change Diirectory
  • dir : List down all the files present in current directory
  • mkdir: To create new directory
    mkdir directory_name
  • rmdir: remove directory
    mkdir directory_name

Useful Git command

  • To check git Configuration
    git config --list
  • To change email and user name configuration. 
    git config --global user.name "Your Name" 
    git config --global user.email "your.email@example.com"

NVM Command

  • To install any node version thorugh nvm 
    nvm install node_version
  • To use any particular node version 
     nvm use node_version
  • To see all node version installed
      nvm ls 

To change color 

color backgroundcode_fontcolor

Example: color 07 will have black background and white font color.

Below are the list of color you can use:
0 - Black
1 - Blue
2 - Green
3 - Aqua
4 - Red
5 - Purple
6 - Yellow
7 - White
8 - Gray
9 - Light Blue
A - Light Green
B - Light Aqua
C - Light Red
D - Light Purple
E - Light Yellow
F - Bright White

1 Comments