拉取代码:
第一次获取代码
git clone https://git.oschina.net/xxxx/omd.git更新代码到本地一个新的temp分支
git fetch origin master:temp比较分支
git diff temp合并temp分支到master分支
git merge temp删除temp分支
git branch -d temp
提交代码:
提交代码到暂存区git add *commit代码
git commit -m "注释"推送代码到自己的远程仓库
git push origin master
git提交忽略文件
新建.gitignore文件,内容如下
/target/ .classpath .gitignore .project .settings/
设置全局信息
git config --global core.excludesfile D://git/.gitignore
以上是常用操作。