【发布时间】:2013-05-28 20:10:08
【问题描述】:
我是 git 新手,我以前使用 svn at,现在我正在部署自己的网站。我有以下内容
proyectos_git
->my_project.git
->my_project_bare_shared.git
mywebsite
->mywebsite_production
->mywebsite_development
clone of ../proyectos_git/my_project.git and
git remote add origin ../proyectos_git/my_project_bare_shared.git
我可以推拉,但我不知道我的文件是否正在同步。在 svn 中,当我执行 svn up 时,我会看到每个文件 A 和添加的文件、D 表示已删除的文件和 G 表示更新后的合并文件。
我应该怎么做才能配置好我的环境?
【问题讨论】:
-
git pull应该报告更改的文件,除非使用merge.stat属性进行不同的配置。提交时,您会看到一组更改/更新的文件作为提交消息的一部分。所以我不完全理解你的问题。
标签: git svn production-environment git-push git-pull