Answer Posted / Sandeep Kumar Ram
A Git repository is a set of files that are tracked by Git. It stores the entire history of changes made to those files, including commits, branches, and tags.nnTo create a new Git repository, follow these steps:nn1. Initialize an existing directory as a Git repository using the command: `git init`.n2. Create a new file in the repository and make initial commit: `git add filename` followed by `git commit -m "Initial Commit"`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers