Git 文件操作

删除git 文件

在终端下:

到需要删除指定Git文件的目录下。

        命令行:find . -name ".git" | xargs rm -Rf


拉去Git文件

在终端下:

到需要的目录下

命令行:

eg:  cd Desktop/

Desktop kx$ Git clone http:// ...../.. .git


git pull 
git commit -m '说明'

git push

你可能感兴趣的:(其他)