From e095add408039cb84ba1efba17c7272c2a617d4d Mon Sep 17 00:00:00 2001 From: arjyalopa Date: Wed, 17 Dec 2025 21:42:08 +0530 Subject: [PATCH 1/5] Added curl output proving repository fork This commit adds the required verification file for Task 6. The file includes the curl command and its output to demonstrate that this repository is a fork of the original upstream repository: ibm-developer-skills-network/mcino-Introduction-to-Git-and-GitHub. This change fulfills the assignment requirement by clearly showing the fork relationship between the upstream repository and this fork, without modifying the original project. --- forked-repo | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 forked-repo diff --git a/forked-repo b/forked-repo new file mode 100644 index 00000000..18801e40 --- /dev/null +++ b/forked-repo @@ -0,0 +1,8 @@ +curl -s https://api.github.com/repos/arjyalopa/mcino-Introduction-to-Git-and-GitHub + +{ + "fork": true, + "parent": { + "full_name": "ibm-developer-skills-network/mcino-Introduction-to-Git-and-GitHub" + } +} From ae281e49a20a36433cb24ce8862c8905bc426221 Mon Sep 17 00:00:00 2001 From: arjyalopa Date: Wed, 17 Dec 2025 17:27:01 +0000 Subject: [PATCH 2/5] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b1034661..fcb557ae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Introduction to Git and GitHub -## Simple Interest Calculator +## Simple Interest Calculator (Updated) A calculator that calculates simple interest given principal, annual rate of interest and time period in years. From 3d559a0d62277a82c58dc2df85bf9722e25977c6 Mon Sep 17 00:00:00 2001 From: arjyalopa Date: Wed, 17 Dec 2025 17:46:45 +0000 Subject: [PATCH 3/5] Add merge branches terminal output --- merge_branches | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 merge_branches diff --git a/merge_branches b/merge_branches new file mode 100644 index 00000000..edb10306 --- /dev/null +++ b/merge_branches @@ -0,0 +1,16 @@ +$ git checkout -b bug-fix-typo +Switched to a new branch 'bug-fix-typo' + +$ git add README.md +$ git commit -m "Fix typo in README" +1 file changed, 1 insertion(+), 1 deletion(-) + +$ git checkout main +Switched to branch 'main' +Your branch is up to date with 'origin/main'. + +$ git merge bug-fix-typo +Updating e095add..ae281e4 +Fast-forward +README.md | 2 +- +1 file changed, 1 insertion(+), 1 deletion(-) From f9a11d2e62a2c523d0599aa4916cd8f652ab5308 Mon Sep 17 00:00:00 2001 From: arjyalopa Date: Wed, 17 Dec 2025 18:19:48 +0000 Subject: [PATCH 4/5] Verify pull request and fork source using curl --- bug-fix-revert | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 bug-fix-revert diff --git a/bug-fix-revert b/bug-fix-revert new file mode 100644 index 00000000..b80a2b74 --- /dev/null +++ b/bug-fix-revert @@ -0,0 +1,3 @@ +$ curl https://api.github.com/repos/arjyalopa/mcino-Introduction-to-Git-and-GitHub/pulls + + From 7399f63206e9ece854d3c56b10cb57a4f555b4c2 Mon Sep 17 00:00:00 2001 From: arjyalopa Date: Wed, 17 Dec 2025 18:31:12 +0000 Subject: [PATCH 5/5] Add branch names and status output --- github-branches | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 github-branches diff --git a/github-branches b/github-branches new file mode 100644 index 00000000..106fcd79 --- /dev/null +++ b/github-branches @@ -0,0 +1,3 @@ +$ git branch -v + bug-fix-typo ae281e4 Fix typo in README +* main f9a11d2 Verify pull request and fork source using curl \ No newline at end of file