github - 如何将 yii2 项目推送和克隆到 github?

标签 github yii2 composer-php

我用 yii2 开发了一个简单的网络应用程序并将其推送到我的 github 存储库。我尝试将其克隆到另一个文件夹并进行测试,但没有用。

有些事情告诉我,这是因为我从没有 composer 的存档中获取 yii2,当我尝试克隆它时,我使用 composer install 命令获取供应商文件夹和自动加载文件,但它没有正确执行。

为什么会发生这种情况,我如何才能将我的网络应用程序正确地推送到 github,以便每个人都可以克隆并启动它们?提前致谢。

最佳答案

在本地完成 Yii2 应用程序准备就绪后,请遵循以下 Git 基本命令。

Git 基本命令

Git 结帐:

$ git clone CHECKOUT_URL

检查git文件状态:

$ git status

将所有文件添加到git:

$ git add *

将选定的文件添加到 git 中:

$ git add filename1, filename2

将所有添加/更新/删除的文件提交到 Git:

$ git commit -m "initial commit" *

将选定的文件提交到git

$ git commit -m "initial commit" filename1, folder1

将提交的文件推送到 Git master 分支:

$ git push -u origin master

查看所有存在的分支:

$ git branch

创建新分支:

$ git branch changes

选择分支:

$ git checkout changes

提交选定的分支“更改”:

 $ git push origin changes

其他 Git 命令:

$ git --help
usage: git [--version] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
           [-c name=value] [--help]
           <command> [<args>]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

关于github - 如何将 yii2 项目推送和克隆到 github?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34588824/

相关文章:

composer-php - Doctrine ODM 与 symfony 3.0.*

php - Composer /PHP : How to check if composer package is installed?

css - 如何保留 Gist 的 CSS?

git - 上传文件而不跟踪 Git 中的更改

php - 如何使用Yii2删除文件夹和内容?

php - 如何在 Yii 中使用 POST 方法创建链接?

visual-studio - 当我尝试在 ubuntu 中使用 VS 安装 jquery-csv 库时,为什么 npm 会给我警告

git - 在不区分大小写的文件系统中重命名与分支 "Master"冲突的 Git 分支 "master"?

php - 如何在 Yii2 中从后端刷新前端缓存

symfony - 使用 Symfony Flex 和 --no-dev 部署到生产环境