I added two new files to my project and added them to my github using the command
git add MyProject/File1.m
git add MyProject/File1.h
I committed the changes and push my changes to my branch.
git commit -m "added two new files"
git push origin newbranch
I ensured I didn't commit the userstate file.
When I git stash, it returns to the commited state, which is added two new files, but my files are missing in my Xcode. But when I check my folder in Finder, I am able to find them. How do I avoid this?
I would like to see my files in the Project Navigator in Xcode. It seems i need to add those files from the Finder every time. It is very troublesome.
Need some suggestion and guidance. Would Really Appreciate it...