ios参考

作者: xcodeman | 来源:发表于2016-08-26 11:48 被阅读0次

    Kenshin Cui's Blog     http://www.cnblogs.com/kenshincui

    程序员头条  http://www.90159.com/

    storyBoard快捷键

      按住option键现实

    按住Cmd和Shift,然后在需要选择的view上方按右键 选择视图

    defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

    defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder

    Pull is not possible because you have unmerged files.

    解决:

    1.pull会使用git merge导致冲突,需要将冲突的文件resolve掉 git add -u, git commit之后才能成功pull.

    2.如果想放弃本地的文件修改,可以使用git reset --hard FETCH_HEAD,FETCH_HEAD表示上一次成功git pull之后形成的commit点。然后git pull.

    注意:

    git merge会形成MERGE-HEAD(FETCH-HEAD) 。git push会形成HEAD这样的引用。HEAD代表本地最近成功push后形成的引用。

    相关文章

      网友评论

          本文标题:ios参考

          本文链接:https://www.haomeiwen.com/subject/tvffsttx.html