1.设置用户名和邮件地址
https://help.github.com/articles/set-up-git/
2.设置SSH认证https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/
3.利用git bash 进入到项目根目录下
4.创建git
$git init
此时会在根目录下自动创建.git文件夹
5.创建.gitignore文件,表明哪些文件可以忽略
/.settings /target /.classpath /.project /.bpmn
6.连接Github远程仓库(前提是在GitHub上已经建立了这个仓库)
git remote add origin git@github.com:username/reponame.git
7.将文件进行快照处理用于版本控制
git add .
add <文件名>是追加指定文件, add .是追加当前目录下所有文件和子文件夹
8.提交到要地仓库,并写一些注释
git commit -m "first commit"
9.将本地仓库的东西提交到地址是origin的地址,master分支下
git push -u origin master
- 命令一览
https://services.github.com/on-demand/downloads/zh_CN/github-git-cheat-sheet/
11.github 官方帮助文档
https://help.github.com/categories/managing-remotes/
12.其实在github上建完一个仓库后会有命令提示
13.关于设置标签(Tag)
参考此博中的第6条
http://blog.csdn.net/luckyyulin/article/details/21090905