Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:

I understand this is an xcode warning/error, however, it happens when I try to run gitk --all from the command line.

YuFei-Zhus-MacBook-Pro:test phil88530$ gitk --all 2012-08-02 21:14:49.246 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:49.252 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:49.293 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:49.295 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:49.474 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:49.476 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:50.731 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  2012-08-02 21:14:50.734 Wish[33464:707] CFURLCopyResourcePropertyForKey failed because it was passed this URL which has no scheme:  YuFei-Zhus-MacBook-Pro:test phil88530$  

I just replaced a new disk and did a fresh install of osx and updated to mountain lion, installed x11 and xcode. Any suggestions why this happens?

like image 942
phil88530 Avatar asked Aug 02 '12 20:08

phil88530


2 Answers

$ alias gitk='gitk 2>/dev/null' 

I have same problem here. This is quick tip until someone answers this solution.

like image 108
Seiichi Yonezawa Avatar answered Sep 21 '22 11:09

Seiichi Yonezawa


If you are MacPorts user upgrade tcl/tk to 8.6.0:

$ sudo port install tcl tk 
like image 36
Tair Avatar answered Sep 24 '22 11:09

Tair