Version control with Git
Version control with Git allows you to manage changes to your test automation codebase, track modifications, collaborate with team members, and maintain a history of your QA automation project development.
Examples
// Example 1: Cloning a Git repository git clone https://github.com/example/repository.git // Example 2: Creating a new branch git checkout -b feature-branch // Example 3: Pushing changes to a remote repository git add . git commit -m "Added new feature" git push origin feature-branch
FAQ (interview questions and answers)
-
What is Git?
A version control system
An integrated development environment
A programming language
-
What is the purpose of branching in Git?
To delete files from the repository
To work on new features or fixes without affecting the main codebase
To merge multiple repositories
-
How do you create a new branch in Git?
git checkout -b branch-name
git branch branch-name
git merge branch-name
-
What command is used to stage changes in Git?
git commit
git add
git push
-
How do you revert changes in Git?
git revert
git reset
git commit
Your Total Score: 0 out of 5
Remember to just comment if you have any doubts or queries.
Git Interview Questions
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.