git项目clone、fetch、合并等常用功能

拉取代码:

第一次获取代码

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

以上是常用操作。

评论 (0)