Lets know a bit about GIT
GIT is a version control system that lets you mannage and keep track of your source code history .So basically version control systems are software tools that help software teams mannage changes to the source code over time. Now there is one more term GITHUB which is different from GIT so GITHUB is a cloud based hosting service that lets you mannage GIT repositories. And repositories are nothing but the storage location for software pacakages.
Now getting back to GIT so its a open source project which was developed in 2005 by Linus Torvalds the famous creator of linux operating system kernel.
So there are some basic git commands
- git add .
- git status
- git log
- git stash
- git stash pop
- git stash clear 7 . git init
- git commit
- git restore
- git clone
These are some basic git commands .And there are still many more We will learn more about them in the upcoming blogs.