A sentence A picture A day!

Github&&SVN

About Github 将现有机器上得项目上传到github上 First 在网站上create new repository

到自己本机项目的文件夹中执行 —git init —git add . —git commit -m “” —git remote add origin https://github.com/yimmyzf/findAlias.git —git push -u origin master 其中origin为一个别名

若在本地机器上添加了文件a 或者文件夹di 再使用 —git add a或者 —git add di —git commit -m “” —git push -u origin master