diff --git a/bug-fix-revert.txt b/bug-fix-revert.txt new file mode 100644 index 00000000..248d770e --- /dev/null +++ b/bug-fix-revert.txt @@ -0,0 +1,4 @@ +theia@theia-morea:/home/project/mcino-Introduction-to-Git-and-Gi +tHub$ cat bug-fix-revert +curl -s https://api.github.com/repos/ibm-developer-skills-network/mcino-Introduction-to-Git-and-GitHub/pulls/3650 | jq -r '.head.repo.clone_url' +https://github.com/AdityaMore1210/mcino-Introduction-to-Git-and-GitHub.git diff --git a/forked-repo.txt b/forked-repo.txt new file mode 100644 index 00000000..b0448de3 --- /dev/null +++ b/forked-repo.txt @@ -0,0 +1,5 @@ + curl -s https://api.github.com/repos/AdityaMore1210/mcino-Introduction-to-Git-and-GitHub | jq -r '.parent.clone_url' + +theia@theia-morea:/home/project$ curl -s https://api.github.com/repos/AdityaMore1210/mcino-Introduction-to-Git-and-GitHub | jq -r '.parent.clone_url' +https://github.com/ibm-developer-skills-network/mcino-Introduction-to-Git-and-GitHub.git +theia@theia-morea:/home/project$ diff --git a/github-branches.txt b/github-branches.txt new file mode 100644 index 00000000..8e645797 --- /dev/null +++ b/github-branches.txt @@ -0,0 +1,4 @@ +theia@theia-morea:/home/project/mcino-Introduction-to-Git-and-GitHub$ git branch -vv + bug-fix-revert 938e631 Fix footer year in README.md from 2022 to 2023 + bug-fix-typo 938e631 [origin/bug-fix-typo] Fix footer year in README.md from 2022 to 2023 +* main dc368c3 [origin/main: ahead 2] Revert "Fix footer year in README.md from 2022 to 2023" diff --git a/merge_branches.txt b/merge_branches.txt new file mode 100644 index 00000000..1523439b --- /dev/null +++ b/merge_branches.txt @@ -0,0 +1,10 @@ +theia@theia-morea:/home/project/mcino-Introduction-to-Git-and-Gi +tHub$ git checkout main +Switched to branch 'main' +Your branch is up to date with 'origin/main'. +theia@theia-morea:/home/project/mcino-Introduction-to-Git-and-Gi +tHub$ git merge bug-fix-typo +Updating 8e0cf09..938e631 +Fast-forward + README.md | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-)