美文网首页
git本地直接连接线上仓库推送

git本地直接连接线上仓库推送

作者: 小悟空大仙人 | 来源:发表于2020-03-26 13:59 被阅读0次
    git init 
    
    touch .gitignore
    
    git remote add origin https://********************.git
    
    git add .
    
    git commit -m 'init'
    
    git push --set-upstream origin master
    
    

    .gitignore

    .DS_Store
    node_modules/
    /data_web/
    npm-debug.log*
    yarn-debug.log*
    yarn-error.log*
    
    # Editor directories and files
    .idea
    .vscode
    *.suo
    *.ntvs*
    *.njsproj
    *.sln
    
    

    相关文章

      网友评论

          本文标题:git本地直接连接线上仓库推送

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