Is there any way to go back to this original file (the state before my commit) without reverting the commit?
Certainly. The file's state before this commit is sitting there in the previous commit. (All commits are snapshots of all the files.)
What you cannot do, however, is alter the commit you have made. Commits are immutable; Git would be pretty useless otherwise.
My only way is to find the file from the origin-develop and copy and paste my feature branch and make a new commit for this.
Yes, and...? So do that.
If what you object to is that you then have two commits where you would prefer to have one, then squash them together after making the second commit; interactive rebase is an easy way to do that, though personally in this situation I would use soft reset, as explained in my What's the difference between git reset --mixed, --soft, and --hard? (this is Regret Type 1). But do not do this if you have already pushed this branch with that previous commit to shared location (such as a pull request). You should not rewrite public history.
Example. We start with this situation (this is a log, so the commits run from newest down to oldest):
* 78f90c1 edited all three files
* 5ec87ed created three files
We edited three files; call them aaa.txt, bbb.txt, and ccc.txt. We regret the edit of ccc.txt and wish to restore it, and it alone, to the state that it was in 5ec87ed.
git restore -s @~1 -- ccc.txt
git add .
git commit -m 'restored ccc.txt'
Done. We now have this:
* 75c192b (HEAD -> what) restored the third file
* 78f90c1 edited all three files
* 5ec87ed created three files
But if we prefer to have only one commit where now we have two (remember, don't do this if you've already pushed the first two commits):
% git reset --soft @~2
% git commit -m 'edited just two files'
Result:
* e0a324a (HEAD -> what) edited just two files
* 5ec87ed created three files