美文网首页
一名合格的iOS 开发必备技能

一名合格的iOS 开发必备技能

作者: iOS打怪升级 | 来源:发表于2017-05-18 16:11 被阅读32次
    1.Markdown 语法的掌握:基本语法参考这里
    2.GIF Brewery软件的使用:用来录制屏幕生成gif,可以修改尺寸大小,播放速度,可以裁切;其中Quick Time 也可以,不过录制的是视频,需要后续转换成图片。
    3. git 的使用
    第一次push  提示过期的时候,需要pull  : git pull  <remote>
    git push -u 指令的用处???
    git push  :https 和ssh 的两种方式 
    参考:http://blog.csdn.net/u013647382/article/details/47832559
    
    …or create a new repository on the command line
    
    echo "# NestVC" >> README.md
    git initgit add README.md
    git commit -m "first commit"
    git remote add origin https://github.com/***/NestVC.git
    git push -u origin master
    -------------------
    …or push an existing repository from the command line
    
    git remote add origin https://github.com/TianQiLi/NestVC.git
    git push -u origin master
    -------------------
    …or import code from another repository
    
    You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
    [Import code](https://github.com/TianQiLi/NestVC/import)
    
    image.png

    相关文章

      网友评论

          本文标题:一名合格的iOS 开发必备技能

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