# 1. Completely remove the old repository tracking (Crucial step)
rm -rf .git

# 2. Reinitialize a brand new repository
git init

# 3. Stage absolutely all files and subdirectories
git add .

# 4. Create the initial commit
git commit -m "Initial commit after repository recreation"

# 5. Name the version using a Git Tag
git tag -a v1.0.0 -m "Version 1.0.0 Base Version"

exit
#list files in git
git ls_files
#diff current file to git files  
git diff bin/git.util.sh
#git Clone
Downloads an existing repository to your local machine.
Example:

git clone https://github.com/user/repo.git
7. git push
Uploads local commits to a remote repository.
Example:

git push origin main

7. git push
Uploads local commits to a remote repository.
Example:

git push origin main
