Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 887 Bytes

Git.md

File metadata and controls

25 lines (19 loc) · 887 Bytes

Back to Questions

Git

What is Git?

  • Version control | Keep track of changes in projects.

What is GitHub?

  • Website that hosts git repositories.
  • Make it easier for developers to share there codes and collaborate with other developers.

Commands

Command Meaning
git init Initialize local repository
git clone Create a copy of repository on local from GitHub
git status Check status
git add Add a file to staging area
git commit Commit changes
git push Push changes to repository
git pull Pull changes from repository
git log View changes

Back to Questions