thor@jumphost ~$ ssh natasha@ststor01
The authenticity of host ‘ststor01 (172.16.238.15)’ can’t be established.
ED25519 key fingerprint is SHA256:x78u8sYMvleea6LHtbNQFcEOMcUCsjoZJJJMGpJbSN0.
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 ~]$
[natasha@ststor01 ~]$ cd /opt/games.git/hooks/
[natasha@ststor01 hooks]$ cp post-update.sample post-update
[natasha@ststor01 hooks]$ vi post-update
[natasha@ststor01 hooks]$ cd /usr/src/kodekloudrepos/games/
[natasha@ststor01 games]$ ls -a
. … .git feature.txt info.txt
[natasha@ststor01 games]$ git status
On branch feature
nothing to commit, working tree clean
[natasha@ststor01 games]$ git branch
- feature
master
[natasha@ststor01 games]$ git checkout master
Switched to branch ‘master’
Your branch is up to date with ‘origin/master’.
[natasha@ststor01 games]$ git merge --no-ff feature -m “Merge feature into master”
Committer identity unknown
*** Please tell me who you are.
Run
git config --global user.email “[email protected]”
git config --global user.name “Your Name”
to set your account’s default identity.
Omit --global to set the identity only in this repository.
fatal: empty ident name (for [email protected]) not allowed
[natasha@ststor01 games]$ git config --global user.name “Natasha”
git config --global user.email “[email protected]”
[natasha@ststor01 games]$ git merge --no-ff feature -m “Merge feature into master”
Merge made by the ‘ort’ strategy.
feature.txt | 1 +
1 file changed, 1 insertion(+)
create mode 100644 feature.txt
[natasha@ststor01 games]$ git push origin master
Enumerating objects: 1, done.
Counting objects: 100% (1/1), done.
Writing objects: 100% (1/1), 232 bytes | 232.00 KiB/s, done.
Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Creating release tag for 2025-10-24…
To /opt/games.git
30edfff…bfcc943 master → master
[natasha@ststor01 games]$ git fetch --tags
remote: Enumerating objects: 1, done.
remote: Counting objects: 100% (1/1), done.
remote: Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
Unpacking objects: 100% (1/1), 165 bytes | 165.00 KiB/s, done.
From /opt/games
- [new tag] release-2025-10-24 → release-2025-10-24
[natasha@ststor01 games]$ git tag
release-2025-10-24
[natasha@ststor01 games]$ git show release-$(date +%F)
tag release-2025-10-24
Tagger: Natasha [email protected]
Date: Fri Oct 24 19:56:05 2025 +0000
Release for 2025-10-24
commit bfcc943c24b4142842c0bdcefce9e8fa3a5f7880 (HEAD → master, tag: release-2025-10-24, origin/master)
Merge: 30edfff 2a98cb1
Author: Natasha [email protected]
Date: Fri Oct 24 19:55:50 2025 +0000
Merge feature into master
[natasha@ststor01 games]$
The approach I have followed to ckeate the hook, but by submitting the solution it showing the issue that - “You have not createt the hooks in master branch”.
If any humble person is there to help me solve this issue, I will be very thankful.