Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 796 Bytes

c-c-c.md

File metadata and controls

43 lines (27 loc) · 796 Bytes

Getting Started

Terminal

What You Need to Know

- cd    . . .   Change Directories 
- cd    . . .   Move up a directory 
- ls    . . . List the files in a Directory 
- rm filename  . . .     delete a file 
- cp filename newfilename . . . copy a file

Git

(In the Terminal)

-  git init    . . . Initialize a repository (directory)
-  git add -A  . . . Stage all files — get them ready to Commit
-  git commit -m ‘Describe what you did’   . . . commit files
-  git push    . . . send them to github

VSCode