I’ve installed git, created a rep, checked in and made changes to some files but I want to know where git stores the repo db and the master files so I can back them up.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Git saves everything (local to your current repository) in the
.gitfolder.An extensive description can be found on gitready for example.
2 of them you are probably interested in:
For backups or transferring your local repository, zipping or copying your .git folder is enough.