Please, I don’t know what the issue is, but Kodekloud has been marking me bad for this particular task since last week, I have tried it again today 3 times and I still failed it, even after doing all I needed to do. Please what am I missing?
Task is: Git Revert Some Changes, Day 27
Here is my submission, all the commands I ran
thor@jumphost ~$ ssh natasha@ststor01 The authenticity of host ‘ststor01 (10.244.30.54)’ can’t be established. ED25519 key fingerprint is SHA256:yEyN8qvzhNxfcKVE+H05zwQPmQMKCXj4JyGWuOP1HIg. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added ‘ststor01’ (ED25519) to the list of known hosts. natasha@ststor01’s password: [natasha@ststor01 ~]$ cd /usr/src/kodekloudrepos/apps [natasha@ststor01 apps]$ git config --global --add safe.directory /usr/src/kodekloudrepos/apps [natasha@ststor01 apps]$ sudo chown -R natasha:natasha /usr/src/kodekloudrepos/apps /opt/apps.git [natasha@ststor01 apps]$ git config user.name “natasha” [natasha@ststor01 apps]$ git config user.email “natasha@example.com” [natasha@ststor01 apps]$ git reset --hard HEAD is now at 50017ed add data.txt file [natasha@ststor01 apps]$ git clean -fd Removing apps.txt [natasha@ststor01 apps]$ git revert HEAD [master 4980dfc] Revert “add data.txt file” 1 file changed, 1 insertion(+) create mode 100644 info.txt [natasha@ststor01 apps]$ git revert HEAD [master 4e6aa07] revert apps 1 file changed, 1 deletion(-) delete mode 100644 info.txt [natasha@ststor01 apps]$ git log --oneline -3 4e6aa07 (HEAD → master) revert apps 4980dfc Revert “add data.txt file” 50017ed (origin/master) add data.txt file [natasha@ststor01 apps]$ git status On branch master Your branch is ahead of ‘origin/master’ by 2 commits. (use “git push” to publish your local commits) nothing to commit, working tree clean [natasha@ststor01 apps]$ git reset --hard 50017ed HEAD is now at 50017ed add data.txt file [natasha@ststor01 apps]$ git revert HEAD [master 70e0230] revert apps 1 file changed, 1 insertion(+) create mode 100644 info.txt [natasha@ststor01 apps]$ git log --oneline -3 70e0230 (HEAD → master) revert apps 50017ed (origin/master) add data.txt file bbdeccb initial commit [natasha@ststor01 apps]$ git status On branch master Your branch is ahead of ‘origin/master’ by 1 commit. (use “git push” to publish your local commits) nothing to commit, working tree clean [natasha@ststor01 apps]$ git push origin master Enumerating objects: 4, done. Counting objects: 100% (4/4), done. Writing objects: 100% (3/3), 287 bytes | 287.00 KiB/s, done. Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) To /opt/apps.git 50017ed…70e0230 master → master
[natasha@ststor01 apps]$

