This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
Replies: 1 comment 2 replies
-
It says you modified that file, could have been a formatting issue I would simply run the following commands to reset the repo and then delete the file committing it # reset head and deleted all commits/progress
git reset --hard HEAD~1
# bring in the changes from the remote
git pull
# create a new branch
git checkout -b data-delete-$YOUR_NAME
# deleting the file
rm -rf data/$YOUR_NAME.json
# adding and committng
git add data
git commit -m "data: delete $YOUR_NAME"
# pushing
git push --set-upstream origin data-delete-$YOUR_NAME
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi BioDrop maintainers,
I started over and cloned the BioDrop repo to delete my
.json
file.Right after I cloned and opened the repo on VS Code, I saw a file that is not added and committed.
Should I remove this file or add and commit it with my PR later?
Beta Was this translation helpful? Give feedback.
All reactions