首先github建好repositories:https://github.com/*******/TempanalyzeProject.git
1、本地工程目录下:git init,然后git status查看哪些不许上传
2、本地工程目录下:vi .gitignore
/target
.classpath
.project
/logs
.settings
即除去上传的文件
再git status,查看有没有起作用
3、执行:git add --all :/
上传所有代码
4、git commit -m "initial commit"
5、git remote add origin https://github.com/*******/TempanalyzeProject.git
6、git remote -v
7、git push -u origin master