好的我在名为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
请帮忙!
答案 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