记录平时github使用问题。
github创建工程标准过程
直接从github上拷贝如下,备忘:
Global setup: Set up git git config --global user.name "Yong Nie" git config --global user.email nieyong_1947@126.com Next steps: mkdir upnpbrowser_cling cd upnpbrowser_cling git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:androidtv/upnpbrowser_cling.git git push -u origin master Existing Git Repo? cd existing_git_repo git remote add origin git@github.com:androidtv/upnpbrowser_cling.git git push -u origin master
将github上的一个项目下载到本地
git clone git@github.com:androidtv/android-xbmcremote.git 使用git clone命令。
github和轻量标记语言
github支持的轻量标记语言有reStructuredText和markdown,能够直接渲染这两种语言。reStructuredText是python文档的专用语法。[https://github.com/gotgit/gotgithub gotgithub]这本书就是使用reStructuredText系统写作的。
如果使用vimwiki的语法,那么是否一定需要转换为html才行呢,如何将vimwiki编辑的文章放到网上,然后大家一起协同工作呢?或者说,能否使用github作为一个团队的wiki呢?