【发布时间】:2020-07-24 16:52:32
【问题描述】:
我知道 Stack 上有一个类似的问题,这就是我所遵循的,但是当我检查 Git 存储库时,我所做的任何编辑都没有出现。我创建和编辑的分支(“入职”)似乎与主分支完全相同。任何帮助将不胜感激。
编辑我的分支“入职”后,我尝试了以下方法。
git push -u origin 入职
git push -u https://gitlab.com/uw-cocobot/chatbot 入职
git push -u https://gitlab.com/uw-cocobot/chatbot.git 入职
这些都不起作用。
注意:这是我的 .git/config 文件。
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://gitlab.com/uw-cocobot/chatbot
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = https://gitlab.com/uw-cocobot/chatbot.git
merge = refs/heads/master
[branch "Onboarding"]
remote = origin
merge = refs/heads/Onboarding
【问题讨论】:
标签: shell command-line terminal gitlab