美文网首页
git 本地创建项目并提交至远程仓库

git 本地创建项目并提交至远程仓库

作者: small_zeo | 来源:发表于2020-11-05 21:34 被阅读0次

    首先需要本地安装git,可到官网下载安装: https://git-scm.com/downloads
    1.远程操作:
    在github账号中,点击右上角个人头像,选择your repositories创建仓库,点击New,
    最后点击create repositories 即可创建空白的远程仓库。

    2.本地操作:
    2.1 创建本地项目内容,并增加一个.gitignore文件,该文件用于忽略不需要上传至远程仓库的
    文件,例如过滤: .vscode node-modules
    2.2 终端/命令行,执行如下命令
    git init
    git add .
    git commit -m "first commit"
    git branch -M main
    git remote add origin https://github.com/xxx/goon.git(远程仓库地址)
    git push -u origin main

    ok

    相关文章

      网友评论

          本文标题:git 本地创建项目并提交至远程仓库

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