you know that git can be local or remote repository . you now know how to work with local git repository.
Read moreCan I use Git without remote repository?
Git will work happily without a central server , although many teams find it convenient to have a central repository. If by “server”, you mean “install server software”, git will also work (central repository or not) without any special software, through ssh or on the file system.
Read moreCan I use Git without using GitHub?
You do not need GitHub to use git, but you cannot use GitHub without using git . There are many other alternatives to GitHub, such as GitLab, BitBucket, and “host-your-own” solutions such as gogs and gittea. All of these are referred to in git-speak as “remotes”, and all are completely optional.
Read moreShould I use Git or GitHub?
To sum up the difference between git vs GitHub: git is a local VCS software that enables developers to save snapshots of their projects over time. It’s generally best for individual use . GitHub is a web-based platform that incorporates git’s version control features so they can be used collaboratively.22 Mar 2022
Read more