Day 10 Task: Advance Git & GitHub for DevOps Engineers.
Git Branching
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.
Git Revert and Reset
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.
Git Rebase and Merge
What Is Git Rebase?
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.
What Is Git Merge?
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.
Refer to this article for a better understanding of Git Rebase and Merge Read here
Task 1: Question: How can you add a text file called version01.txt inside the Devops/Git/ directory with specific content, create a new branch from master, switch to the new branch, add commits to the new branch, and restore the file to a previous version?
Answer:
Task 2: Question: How can you demonstrate the concept of branches with 2 or more branches, add changes to the dev branch, merge the dev branch into master, and practice git rebase?
Answer:
These steps demonstrate how to effectively use branches, commits, merges, and rebases in Git to manage project development.
Founder @ Bridge2IT +32 471 26 11 22 | Business Analyst @ Carrefour Finance
11 个月Your contributions to the field of DevOps are invaluable. Keep up the great work! ????
DevOps Engineer at Capgemini
1 年Learning Advanced Git & GitHub !! hashtag #happylearning !!