Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 2025/git/01_Git_and_Github_Basics/Week-4-challenge/info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ I am a post graduate student in statistics right now i am growing my career in D
Linux, GitHub , Shell Scripting , Terraform etc...

i am looking forward for a job as DevOps Engineer .

I am so excited to share that i am moving forward and performing my skills better while doing hands on practice on the devops tools like git hub and I am personally enjoying it.
21 changes: 21 additions & 0 deletions 2025/git/01_Git_and_Github_Basics/solutions.md/task5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Task 5: Advanced Branching and Switching

- Created a new branch feature-update and switched to that branch by using

command : git checkout -b feature-update

![Screenshot 2025-06-20 145159](https://github.com/user-attachments/assets/f633d7b1-efcd-4319-a6d2-d59185fa6b4a)


- Modified the File info.txt and Committed Changes to the new branch and further pushed to remote github repository :

command :git add info.txt
git commit -m "Feature update: Enhance info.txt with additional details"
git push origin feature-update
![Screenshot 2025-06-20 172331](https://github.com/user-attachments/assets/ad2c5df4-1a9f-4c84-8b17-c8b471dc2b05)

![Screenshot 2025-06-20 172406](https://github.com/user-attachments/assets/b17c17e0-d317-4b10-991a-6add1b5b60da)


- merging the feature-update branch with master branch through creating a pull request on github