我有一个 git 存储库,现在我需要向其中添加客户端和服务器文件夹。即把所有Ionic相关的东西放到客户端文件夹,把nodeJs相关的东西放到服务器文件夹。我已经这样做了:
我已经在 git 上有一个没有这个文件夹结构的 git repo。即基本 Ionic 4 应用程序的 git repo 那么我怎样才能创建这种结构并将其推送到同一个 repo 呢?
我试过这个。但它给出了以下错误。我也尝试过,git pull
但还没有运气。
git push --set-upstream origin master To https://gitlab.com/my-repo/client.git ! [rejected]
master -> master (non-fast-forward) error: failed to push some refs to 'https://gitlab.com/my-
repo/client.git' hint: Updates were rejected because the tip of your current branch is behind hint: its
remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint:
See the 'Note about fast-forwards' in 'git push --help' for details.
注意:实际上我的本地分支是最新的远程master
. 在创建上述文件夹结构之前,我已经完成了它。