U盘突然有问题 可能是太便宜插在另一台电脑格式化时显示有写保护 windows 使用diskpart工具处理list disk 列出磁盘列表select disk 选中操作盘attributes disk clear readonly 清除写保护状态clean 删除U盘数据create partition primary 建立分区如果U盘容量小于32 GB,输入“format fs=fat32”。如果大于32 GB,输入“format fs=ntfs”。需要等待完成exit 退出解决方案
由于项目时间线比较长 git clone http://github.com/large-repository --depth 1克隆时只下载一条解决方案
当前分支无用 需要删除远端分支 保持远端结构清晰// 删除远程分支 git push origin --delete remoteBranchName参考》》》
很久没打开wsl 忘记密码关闭Ubuntu窗口打开Powershell 或 cmd, 以root默认登陆 wsl -u root。别关,在这个cmd窗口内(重点)输入 wsl 进入,输入 passwd your_username ,确认密码。关闭 WSL。 exit原文直达
首先查看远端分支有哪些git branch -a # 返回本地加远程的 远程别名默认为remote返回如下,[root@ecs-71300 shishai_admin_fe]# git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/demo remotes/origin/mastergit checkout -b 本地分支名 origin/远程分支名git fetch <远端仓库名> git checkout -b <本地分支名> <远端仓库名>/<分支名>参考文章 >>>
风里来
最后,我终于解放了我自己……