GIT:在GIT Bash中更新存储库,GIT GUI仍显示旧存储库

时间:2017-09-22 19:41:20

标签: git repository

我是GIT的新手,我正在使用命令行界面以及所有内容如何组合在一起。所以,请原谅任何不准确或错误的措辞。纠正和建设性批评高兴地接受了。现在谈谈我的问题。

我最初通过GIT GUI创建了一个git存储库。它在正确的文件夹中,但后来我开始玩GIT Bash。在那里我使用命令行:

$ git init

在那里,它将.git文件夹移动到另一个目录,显示datagrip,atom和其他一些程序的源文件。然后,我执行以下操作以在正确的文件夹中初始化.git。

$ cd "Path"   'Moved to the correct path
$ git init    'Reinitialized existing Git repository
$ git ls -la  'Verified the .git folder
$ git .add    'Just to get a snapshot of everything there, not sure if it was needed
$ git .commit 'Commit all of the files in the repository
$ git .log    'Verify my commit
$ git status  'Verify that there is nothing to commit

一切顺利,但是当我在进行这些更改后打开GIT GUI时,显示所有文件的GIT GUI窗口仍然在原始文件夹中。如果有的话,我不确定出了什么问题。我是否必须采取其他操作来同步GIT GUI以及在GIT Bash中所做的更改?我创建了一个新的存储库吗?

任何帮助将不胜感激。

谢谢! SpicyKoalaBear

1 个答案:

答案 0 :(得分:0)

您永远不必移动.git目录。只需运行" git init"在项目的根目录中。另外,你指的是" git UI"?