解决Git中文文件名显示乱码
使用 git status
显示中文文件名乱码:
解决办法,在 Git Bash 中执行:
1 | #不对0x80以上的字符进行quote,解决git status/commit时中文文件名乱码 |
使用 git status
显示中文文件名乱码:
解决办法,在 Git Bash 中执行:
1 | #不对0x80以上的字符进行quote,解决git status/commit时中文文件名乱码 |
A remote repository is a repository that’s just like the one you’re using but it’s just stored at a different location. To manage a remote repository, use the git remote command:
远程仓库与你使用的本地仓库差不多,只不过远程仓库存储在另一个地方,如 GitHub,码云 等。可以使用以下命令管理管理远程仓库。
$ git remote
由于台风影响,导致计算机中心服务器大规模断电,之前部署的云平台服务器重启后服务不可用。根据之前他们留下的文档,依次启动各个服务。启动 MySQL 时,遇到了如下问题:
“Another MySQL daemon already running with the same unix socket”
主要原因:
Linux 操作系统异常重启后,MySQL 有一个 mysql.sock 文件记录实例的运行状态,因为非正常关机,导致该文件继续存在,MySQL 在启动时会检查该文件,发现已经存在,那么就抛出此错误。
解决办法:
删除 mysql.sock 文件或者改名,重启 MySQL 服务后恢复正常。
近期在内网服务器上安装MySQL Workbench时,遇到了一个小问题。
由于MySQL Workbench 官网上明确说明安装此软件需要“Microsoft .NET Framework 4.5”和“Visual C++ Redistributable for Visual Studio 2015”。
该服务器操作系统是Windows Server 2012 R2,已经自带了.NET Framework 4.5,所以只需要安装Visual Studio 2015就行了。