如何将git-repo添加到应用程序并同步它?

时间:2012-05-26 08:36:56

标签: git

我有一个应用程序(即app1),其中包含适当的git-setup。我有相同的应用程序(即app2)没有git。该应用程序正在进行所有最新更改。现在我想将git添加到app2,然后想要更新app1。我怎么能做到这一点?

1 个答案:

答案 0 :(得分:1)

嗯,好问题。不确定,但这样的事情应该做到这一点:

  1. 首先,备份app2: - )
  2. cd app2
  3. mkdir tmp
  4. cd tmp
  5. git clone git://.../app1.git
  6. git mv .git ..
  7. cd ..
  8. 删除目录tmp
  9. git status
  10. 始终尝试将代码置于版本控制之下。 Git的指纹很小。