Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 602 Bytes

File metadata and controls

9 lines (9 loc) · 602 Bytes

Create and edit files and folders Run git status to check what changes you’ve made and to see the state of the files Run git add filename to add the changes in a file You can add files in sub-folders too: git add sub-folder/filename You can also add multiple files: git add filename1 filename2 filename3 subfolder/filename4 Run git status to check the state of the files Commit your bundle of files with a short message with git commit -m "message goes here" You can also just run git commit and a text editor will open for you to write a commit message Run git status to check the state of the files