I have 4 files inside a folder. I started committing them one by one to "patch-1".
I used
git add "filename1"
git commit - m "comments"
git branch -m patch-1
git push -u origin patch-1
the file was added to staging area, eventually I pushed the file but it does not show in the pull request
Then I created a new branch "dev" in the repo and deleted the "patch-1", now all the other file are showing in the folder except filename1.
What I mean to say is I committed one file to patch-1 branch in a repo but the commit did not show up in the repo, so I made another branch dev and deleted patch-1. Now in the new branch I see only three file out 4, (the one I committed is not showing up)
When I change the branch in git bash, it shows there.