git版本控制与本地文件

时间:2010-09-08 09:28:52

标签: git version-control

好的我在名为mywebsite的文件夹中有一个项目,该文件夹位于我的mac上的文档文件夹中。如何使用git版本控制此文件夹?

每当我尝试某种东西时,我最终都会遇到某种致命的错误而且现在真的很烦我,你能帮忙吗?

git init,然后mkdir,然后我尝试添加和克隆文件无效。

git init 
git mkdir mywebsite 
cd mywebsite 
git clone file://localhost/Users/me/Documens/sites/mywebsite 
fatal '/Users/me/Documens/sites/mywebsite' does not appear to be a git repository 
fatal: The remote end hung up unexpectedly

请帮忙!

1 个答案:

答案 0 :(得分:4)

如果您已经在“mywebsite”中填写了文件:

cd /Users/me/Documens/sites/mywebsite
git init . # note the final '.'

然后执行git status以查看需要添加的内容。

git add .
git status # check what has been added
git commit -m "first commit" 

如果您还没有任何文件,可以:

cd /Users/me/Documens/sites/
git init mywebsite
cd mywebsite # you are now in an empty git repo