What are Source Code Management tools?
Source Code Management tools like Git manage changes to source code over time.
Which Source Code Management tools are you familiar with?
currently, I am most familiar with Git
How do you upload an object to the Git repository?
You upload objects to a Git repository using “git add” to stage changes and “git commit” to save them to the repository.
What is a repository in Git?
A repository in Git is a storage location for a project’s source code history and branches.
What language is used in Git?
Git uses its own command language for operations like committing changes, branching, and merging.
How can you create a repository in Git?
You can create a repository in Git using the “git init” command in a directory containing your project files.