AWS codecommit 无法完全克隆 repo
AWS codecommit not able to clone repo completely
original image at the aws codecommit repo
image of the same file when cloned and opened in editor
我从 aws 克隆了一个存储库,当我打开存储库检查文件时,其中的内容丢失了。我附上了原始文件和克隆后的相同文件的屏幕截图。
您确定您在 commit/branch 与 AWS 存储库相同吗?使用 git log
检查。 git 存储库可以有多个分支。克隆后默认分支通常是 "master"。在您的 AWS 屏幕截图上,您显示了 "dev" 分支。要从 "master" 切换到 "dev",请使用:
git checkout dev
original image at the aws codecommit repo
image of the same file when cloned and opened in editor
我从 aws 克隆了一个存储库,当我打开存储库检查文件时,其中的内容丢失了。我附上了原始文件和克隆后的相同文件的屏幕截图。
您确定您在 commit/branch 与 AWS 存储库相同吗?使用 git log
检查。 git 存储库可以有多个分支。克隆后默认分支通常是 "master"。在您的 AWS 屏幕截图上,您显示了 "dev" 分支。要从 "master" 切换到 "dev",请使用:
git checkout dev