ios - xcode project name and directory change/ Git cannot see old revisions -


i in git madness right now!

i changed name of xcode project clicking on project name in xcode , changing name oldproject newproject.

that changed name of project everywhere except folder (in finder) containing project files. ocd kicked in , changed directory name project files reside. had manually point xcode location of project files (by selecting project in xcode, opening utilities window , updating "full path"). app still works fine.

now comes git part. checked git status in terminal , said needed add directory newprojectdirectory/. did , did commit. , can commit , use git normal going forward can't see of oldprojectdirectory/ revisions.

any thoughts? thanks

if want track history beyond rename, it's normal. git doesn't track history of renamed file other files. 'remove & add newly'

but, can use --follow option

git log --follow rename-file 

and can see history beyond rename, works file.


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -