Git Bash的“clone”命令没有做任何事情。
以下是背景:
我克隆了我教授的资料库。
我正在从他的主分支中提取变化。
他的回购是INFO253-webarch ......子文件夹是:hw-1,...到hw-7。
当我从他的主分支拉出来时,我的计算机上没有更新任何内容。
Audrey@Audrey-PC MINGW64 ~/Git/INFO253-webarch-1/hw-7 (hw-7-branch)
$ git pull kayashaolu master
例如,他创建了hw-7文件夹,其中包含一个文件:但它不会显示在我的计算机上。
为了帮助我排查问题,此处为git config,此处为git status。
以下是git remote -v
给出的内容:
Audrey@Audrey-PC MINGW64 ~/Git/INFO253-webarch-1 (master)
$ git remote -v
kayashaolu https://github.com/kayashaolu/INFO253-webarch (fetch)
kayashaolu https://github.com/kayashaolu/INFO253-webarch (push)
origin https://github.com/audreyCEE/INFO253-webarch-1.git (fetch)
origin https://github.com/audreyCEE/INFO253-webarch-1.git (push)
如果有帮助,这是git branch -vv
给出的内容:
Audrey@Audrey-PC MINGW64 ~/Git/INFO253-webarch-1 (master)
$ git branch -vv
hw-1-branch 5f8609f Removed file from the wrong folder
hw-2-branch 4324070 Change made in the titles 09-10-2015 10 44 pm
hw-3-branch 028d476 I had forgotten ; in a line
hw-4-branch df699ce Other typo noticed
hw-5-branch 8e0d2cb answers added
hw-6-branch 4403df4 parameters ok
hw-7-branch 7f17c07 This is a test to solve the issue.
* master e2b2d8b [origin/master: ahead 25] Redirect location fix
我还尝试在我的计算机上创建一个新文件夹,然后再次克隆,但“clone”命令不执行任何操作:新文件夹保持为空。我没有收到任何错误消息,甚至没有收到更新消息。
感谢您的帮助!
编辑/我实施的内容: 在多次尝试解决问题失败后,我最终卸载并重新安装了git!