clearclear the terminal windowlslist files and folders in the active foldercp [source name] [destination name]copy a file or folder, examplecp hello.py goodbye.pycopies the filehello.pyand saves it asgoodbye.pymv [target file] [new name]rename a file or folder, examplemv hello.py hi.pyrenames the filehello.pytohi.pyrm [target file]removes (deletes) the target file, examplerm hi.pymkdir [name]makes a new folder (directory), examplemkdir myFolderrmdir [child folder name]removes a child folder (directory) of the active folder, examplermdir myFoldercd [child folder name] changes the active folder, examplecd myFolder`..move to the parent folder, examplecd ..moves the active folder to the parent folder
code hello.pycreate a python file call hello and begin coding into the filepython hello.pyexecute the python program
-
Pull latest code from the repository
git pull -
Add indoor.py to the changes to be committed
git add [file name] -
Add all chnaged files to the changes to be committed
git add -A -
Commit all changes in the REPO with comments
git commit -m “My comment“ -
Push all changes to the REPO
git push



