摘要:
1.问题描述 比如你有两个分支:master和v1.0。当你在v1.0中修改了内容后,切换到master分支,发现master中也同步修改了。 2.原因分析 这是因为,git会把没有commit的内容直接移到你要checkout的branch上面去,而且如果此时对这个新跳转的branch中,原来修改 阅读全文
摘要:
1.如果引用了子模块,关于上传子模块 必须要有.gitmodule文件,所以先创建 添加子模块 git submodule add <子模块仓库的URL> <本地路径> 初始化子模块: git submodule init 更新子模块: git submodule update 或者你可以用一条命令 阅读全文