Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 415 Bytes

README.md

File metadata and controls

15 lines (15 loc) · 415 Bytes
  1. Create a git repository
  2. Git operations git clone [URL] cd directory_name
  3. Configure Git git config --global user.name "Name" git config --global user.email "[email protected]"
  4. Edit the file and add it to the repository
    • code README.md
    • add any text within the file
    • save the file
    • check status: git status
    • git add README.md
    • git commit
    • git push origin master