Skip to content

Latest commit

 

History

History
13 lines (13 loc) · 488 Bytes

File metadata and controls

13 lines (13 loc) · 488 Bytes

Basic Git-Bash Commands

  • cd the-specified-directory
    • changes the directory to the-specified-directory
  • cd .
    • changes to current directory
  • explorer .
    • opens current directory in a file explorer window
  • dir / ls
    • lists all files in the current directory
  • mkdir the-new-directory-name
    • create a folder named the-new-directory-name in the current directory
  • touch the-new-file-name
    • creates a file named the-new-file-name in the current directory.