Skip to content

WilsonJhub/Intro-to-Git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Key notes to remember about Git

Git files have 3 main modes:

  • Committed
    • Information is securely stored in local database.
  • Modified
    • File has been changed but NOT committed to the database.
  • Staged
    • Flagged a file’s changed version to be committed in the next snapshot

How to Clone a file:

  • $ git clone (Place link here)

Check File Status:

  • $ git status

Adding a file name:

  • git add filename

- Committing a File:

  • git commit -m "Insert change here"

Pushing Change to Origin

  • git push origin main

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published