Git Clean
Tasks 
- Navigate to the Git repository located at - /usr/src/kodekloudrepos/clusteron the Storage server.
- Remove any untracked files and directories (files that are not committed to Git). 
- Do not add or push any new files. 
- Ensure that - git statusshows a clean working tree (no changes, no untracked files).
Steps
1
SSH to storage server and switch to root if needed
ssh natasha@ststor01
sudo su -3
Check for untracked files
git status
4
Remove all untracked files and directories

git clean -fd5
Verify it says: "nothing to commit, working tree clean"
git status
Last updated