[root@VM_0_3_centos test2]# git mv f1 f1.txt
[root@VM_0_3_centos test2]# git commit -m "rename f1.txt"
[root@VM_0_3_centos test2]# git push #第一个人修改了文件名,并推到远程
[root@VM_0_3_centos test]# git mv f1 f1.html
[root@VM_0_3_centos test]# git commit -m "rename f1.html"
[root@VM_0_3_centos test]# git push #报错
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
To git@github.com:qilinzhicai/test.git
! [rejected] 分支2 -> 分支2 (fetch first)
error: failed to push some refs to 'git@github.com:qilinzhicai/test.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first merge the remote changes (e.g.,
hint: 'git pull') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
[root@VM_0_3_centos test]# git pull #拉取远程到本地并合并时会报冲突
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (1/1), done.
remote: Total 2 (delta 1), reused 2 (delta 1), pack-reused 0
Unpacking objects: 100% (2/2), done.
From github.com:qilinzhicai/test
eb12a34..1195d98 分支2 -> origin/分支2
CONFLICT (rename/rename): Rename "f1"->"f1.html" in branch "HEAD" rename "f1"->"f1.txt" in "1195d987ec9a25b5867222093c88d366d4870c95"
Automatic merge failed; fix conflicts and then commit the result.
[root@VM_0_3_centos test]# ls #发现两个文件名都在了
f1.html f1.txt f2 f3 README.md
[root@VM_0_3_centos test]# git status
# On branch 分支2
# Your branch and 'origin/分支2' have diverged,
# and have 1 and 1 different commit each, respectively.
# (use "git pull" to merge the remote branch into yours)
#
# You have unmerged paths.
# (fix conflicts and run "git commit")
#
# Unmerged paths:
# (use "git add/rm <file>..." as appropriate to mark resolution)
#
# both deleted: f1
# added by us: f1.html
# added by them: f1.txt
#
no changes added to commit (use "git add" and/or "git commit -a")
[root@VM_0_3_centos test]# git rm f1 #删除f1
[root@VM_0_3_centos test]# git rm f1.txt
[root@VM_0_3_centos test]# git add f1.html
[root@VM_0_3_centos test]# git status
# On branch 分支2
# Your branch and 'origin/分支2' have diverged,
# and have 1 and 1 different commit each, respectively.
# (use "git pull" to merge the remote branch into yours)
#
# All conflicts fixed but you are still merging.
# (use "git commit" to conclude merge)
#
nothing to commit, working directory clean
[root@VM_0_3_centos test]# git commit -m "resolve chonflicts" #发现冲突解决
[分支2 6223729] resolve chonflicts
[root@VM_0_3_centos test]# git push #推送到远程不会报错了
2019-06-18 不同人修改了同一个文件的文件名
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 总结:如果不同人修改了不同文件或者相同文件的不同位置或者一个人修改了文件名一个人修改了文件内容,都可以用git p...
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- 添加源 sudo add-apt-repository ppa:nm-l2tp/network-manager-l...