美文网首页
【Ruby】项目新建

【Ruby】项目新建

作者: 盐果儿 | 来源:发表于2024-02-06 16:54 被阅读0次

    1. github上新建仓库

    2. 本地github目录下,创建rails项目

    3. 进入创建的项目文件夹

    4. 初始化git仓库

    git init

    5. 连接远程仓库

    git remote add origin <remote repository url>

    6. 正常提交

    git add .

    git commit -m "Init commit"

    git push origin main

    相关文章

      网友评论

          本文标题:【Ruby】项目新建

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