$ cd /C/Users/Administrator/workspace/HelloGIT //cd到程序的目录底下 $ git init //创建版本库 $ git status //查看版本库当前状态 $ git add .classpath //添加文件.classpath到版本库 $ git add . //添加所有文件到版本库 $ git commit -m "Hello GIT" //把你的代码提交到版本库,“Hello GIT ”是描述这段代码的内容 $ git status
0