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

1.Markdown 语法的掌握:基本语法参考这里
2.GIF Brewery软件的使用:用来录制屏幕生成gif,可以修改尺寸大小,播放速度,可以裁切;其中Quick Time 也可以,不过录制的是视频,需要后续转换成图片。
3. git 的使用
第一次push  提示过期的时候,需要pull  : git pull  
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)
一名合格的iOS 开发必备技能_第1张图片
image.png

你可能感兴趣的:(一名合格的iOS 开发必备技能)