我尝试在loacl上使用git并在生产中进行部署。 我也使用了支架和git插件。
理想情况
[本地] 地方/我的/工作/文件夹
[远程1] GitHub的
[远程2] REMOTE2 /我/服务器/文件夹/主题
github的配置运行良好。 用我的服务器我遇到了一些困难。我使用ssh来推送和连接到服务器。
我在远程2上做了什么
$ mkdir git/theme
$ cd git/theme
$ git init
我在本地做了什么 git remote add origin ssh://user@xxx.xx.xxx.xxx:yy / home / user / git / theme
一开始,我收到了一些错误:
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
所以我用commande解决问题到/ home / user / git / theme:
$ git config receive.denyCurrentBranch ignore
但是我注意到,.git文件夹是在推送时更新但没有我的本地文件/ my / working /文件夹
我删除了遥控器2上的每一个想法并开始一个新遥控器。
最后我得到了这些配置:
[本地]
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "github"]
url = git@github.com:me/theme.git
fetch = +refs/heads/*:refs/remotes/github/*
[branch "master"]
remote = github
merge = refs/heads/master
[remote "origin"]
url = ssh://user@xxx.xx.xxx.xxx:yy/home/user/git/theme/theme.git
fetch = +refs/heads/*:refs/remotes/origin/*
[远程2]
[core]
repositoryformatversion = 0
filemode = true
bare = true
当我使用
时$ git push origin master
.git是更新但没有文件被推送。
当我开始时,我尝试了很多东西但是我测试的所有tuto都不能完美运行。我本地和远程2之间的通信运行良好,这是一个良好的开端。
首先,我对裸机和非机存储库感到困惑。
为什么当我推送到远程2时,它不会将文件推送到我的文件夹中? 为什么本地分支主机连接到远程1? 为什么当我推送到远程2时,它会推送到分支原点/主站而不是主站?
提前感谢您的帮助。 jB表示
答案 0 :(得分:0)
为什么当我推送到远程2时,它不会将文件推送到我的文件夹中?
通过推送到远程存储库,您不会推送文件,而只推送索引。裸存储库不包含文件(或跟踪它们)。当您尝试从其他位置克隆存储库时,您将看到将获得所有文件。