我正在自学GIT并使用我的网站进行练习。 Dreamweaver是我首选的IDE,但是当我将整个站点“输入”我的生产服务器时,它还“隐藏.git目录中的所有文件”。我知道如何对特定文件类型使用隐藏真实内容,但有一种方法可以忽略该文件夹,或者是我选择特定文件的唯一选择。
答案 0 :(得分:1)
是的,我需要改进部署过程。但我能够通过以下方式解决它: 1.取消隐藏.git文件夹 2.使用Dreamweavers隐形功能。 也许有一天Adobe会包含GITHUB集成。
答案 1 :(得分:0)
To be a little more specific: In Dreamweaver, make sure the Files panel is open for the site you are working on. Click the Refresh button (clockwise pointing arrow circle) to make sure your .git folder is displayed. Right-click on the .git folder. Choose Cloaking/Cloak. The folder icon for that folder will show a red slash through it.
答案 2 :(得分:-1)
因为你已经在本地使用git,所以你应该在服务器上设置一个新的遥控器(git init --bare
)并推送到那个遥控器。
创建指向该遥控器的链接:
git remote add production user@server.com:pathtogit
推送到那个遥控器
git push production master
然后,您应该有一个脚本,当远程接收到一些更改时,将自动部署(使用git hooks)
这个答案只是它的开头,你应该尝试为自己搜索一下