小知识

作者: debt | 来源:发表于2017-05-08 17:14 被阅读6次
    1. 忽略git上传文件 /node_modules
    2. 初始化git项目
      没有文件的时候
    echo "# weixin" >> README.md
    git init
    git add README.md
    git commit -m "first commit"
    git remote add origin https://github.com/liuestc/weixin.git
    git push -u origin master
    

    已经存在文件的时候

    git remote add origin https://github.com/liuestc/weixin.git
    git push -u origin master
    

    第一次提交为什么要用 -u?

    1. 时间秒数转化为年月日 new Date(t).getFullYear()+new Date(t).getMonth()>9?(new Date(t).getMonth())+1:''0''+(new Date(t).getMonth())+1

    相关文章

      网友评论

          本文标题:小知识

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