Advance Git & GitHub for DevOps Engineers

Advance Git & GitHub for DevOps Engineers

Git Branching

Git branching is a way for developers to create separate versions of their code so they can work on different things without affecting the main codebase. It helps them collaborate and experiment more easily, and keep their work organized.

Git Revert and Reset

The Git Revert command creates a new commit that undoes a previous commit, essentially "rolling back" the changes. This allows developers to undo mistakes or unwanted changes without erasing any history.

On the other hand, the Git Reset command moves the current branch to a specific commit, removing any changes made after that point. This can be a more drastic way to undo changes, as it permanently erases any history after the chosen commit.

Git Rebase and Merge

What Is Git Merge?

Git Merge combines the changes made in one branch with another branch, creating a new commit that includes both sets of changes. This method creates a merge commit that links the two branches together.

What Is Git Rebase?

Git Rebase, on the other hand, incorporates the changes from one branch into another by rewriting the project history. This means that the changes made in the branch being rebased are replayed on top of the other branch's history, resulting in a linear project history.

Task

Task 1-->

Add a text file called version01.txt inside the Devops/Git/ with “This is first feature of our application” written inside. This should be in a branch coming from master, [hint try git checkout -b dev], switch to dev branch ( Make sure your commit message will reflect as "Added new feature").

--> version01.txt should reflect at the local repo first followed by the Remote repo for review.

Add a new commit in dev branch after adding the below-mentioned content in Devops/Git/version01.txt: While writing the file make sure you write these lines

  • 1st line>> This is the bug fix in the development branch

  • Commit this with the message “ Added feature2 in development branch”

  • 2nd line>> This is gadbad code

  • Commit this with the message “ Added feature3 in the development branch

  • 3rd line>> This feature will gadbad everything from now.

  • Commit with the message “ Added feature4 in the development branch

Restore the file to a previous version where the content should be “This is the bug fix in the development branch”

If you ran the command "git reset ab05c7f" and there were no changes made to the file "version01.txt", it means that the contents of the file in the commit you reset to (i.e. "ab05c7f") are the same as the contents of the file in your current working directory.

In this case, you can use the "git checkout" command to restore the file to the state it was in at the time of the commit. To do this, run the following command:

git checkout ab05c7f -- version01.txt

This command will restore the file "version01.txt" to the state it was in at the commit "ab05c7f".

Please note that this will discard any changes you have made to the file since that commit.

Task 2-->

Demonstrate the concept of branches with 2 or more branches with a screenshot.

Git Branches: List, Create, Switch to, Merge, Push, & Delete

Initially, we have a single branch called "master" that contains the main codebase for the project.

$ git init MyProject
$ cd MyProject
$ touch hello.txt
$ git add hello.txt
$ git commit -m "Initial commit"

Now, let's say we want to develop a new feature for the project without affecting the main codebase in the "master" branch. We can create a new branch for this feature called "dev" using the following command:

$ git checkout -b dev

This command creates a new branch called "dev" and switches to it. Now, any changes we make to the project will be made in this branch, and the "master" branch will remain unaffected.

$ touch feature.txt
$ git add feature.txt
$ git commit -m "Added feature file"

We can now switch back to the "master" branch using the following command:

$ git checkout master

Now, if we want to merge the changes we made in the "dev" branch into the "master" branch, we can use the following command:

$ git merge dev

This command will merge the changes we made in the "dev" branch into the "master" branch.

Alternatively, if we want to abandon the changes we made in the "dev" branch and switch back to the "master" branch without merging, we can use the following command:

$ git checkout master
$ git branch -d dev

This command deletes the "dev" branch and discards any changes made in that branch.

In summary, using branches in Git allows developers to work on separate features or fixes without interfering with the main codebase, and then merge those changes back into the main branch once they are complete. This helps to keep the codebase organized and makes it easier to collaborate with other developers on a project.

Add some changes to dev branch and merge that branch in master

Continued with Task 1 Terminal(taken same main and dev branch )

As a practice try git rebase too, and see what difference you get.

Thank you for reading. I hope you were able to understand and learn something new from my blog.

Happy Learning!

Please follow me on Hashnode and do connect with me on LinkedIn ArnavSingh.

Did you find this article valuable?

Support Arnav Singh by becoming a sponsor. Any amount is appreciated!