Day 10 Task : Advance Git & GitHub for DevOps Engineer .

JIBRAN SIDDIKIJIBRAN SIDDIKI
2 min read

1 .) Git Branching

Ans --

  • Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch, and can have multiple other branches. You can merge a branch into another branch using a pull request.

  • Branches allow you to develop features, fix bugs, or safely experiment with new ideas in a contained area of your repository.

2 .) Git Revert and Reset

Ans --

  • Two commonly used tools that git users will encounter are those of git reset and git revert . The benefit of both of these commands is that you can use them to remove or edit changes you’ve made in the code in previous commits.

3.) What Is Git Rebase?

Ans --

  • Git rebase is a command that lets users integrate changes from one branch to another, and the logs are modified once the action is complete. Git rebase was developed to overcome merging’s shortcomings, specifically regarding logs.

4 .) What Is Git Merge?

Ans --

  • Git merge is a command that allows developers to merge Git branches while the logs of commits on branches remain intact.

  • The merge wording can be confusing because we have two methods of merging branches, and one of those ways is actually called “merge,” even though both procedures do essentially the same thing.

0
Subscribe to my newsletter

Read articles from JIBRAN SIDDIKI directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

JIBRAN SIDDIKI
JIBRAN SIDDIKI