Navigate to the Git repository located at /usr/src/kodekloudrepos/cluster on the Storage server.
/usr/src/kodekloudrepos/cluster
Remove any untracked files and directories (files that are not committed to Git).
Do not add or push any new files.
Ensure that git status shows a clean working tree (no changes, no untracked files).
git status
SSH to storage server and switch to root if needed
ssh natasha@ststor01 sudo su -
cd /usr/src/kodekloudrepos/cluster
Check for untracked files
Remove all untracked files and directories
git clean -fd
Verify it says: "nothing to commit, working tree clean"
Last updated 7 months ago