• git-completion.bash 保存在你的 root 目录中。

  • git-prompt.sh 保存在你的 root 中。

  • 修改 .bash_profile 文件,添加如下内容。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    # Enable tab completion
    source ~/git-completion.bash

    # colors!
    green="\[\033[0;32m\]"
    blue="\[\033[0;34m\]"
    purple="\[\033[0;35m\]"
    reset="\[\033[0m\]"

    # Change command prompt
    source ~/git-prompt.sh

    export GIT_PS1_SHOWDIRTYSTATE=1
    # '\u' adds the name of the current user to the prompt
    # '\$(__git_ps1)' adds git-related stuff
    # '\W' adds the name of the current directory
    export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
  • Done !


使用 git status 显示中文文件名乱码:

中文乱码
解决办法,在 Git Bash 中执行:

1
2
#不对0x80以上的字符进行quote,解决git status/commit时中文文件名乱码
git config --global core.quotepath false
阅读全文 »


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

  • It’s possible to have links to multiple different remote repositories.
    可以添加多个不同的远程仓库。
  • A shortname is the name that’s used to refer to a remote repository’s location. Typically the location is a URL, but it could be a file path on the same computer.
    短命名用于指向远程仓库的地址。该地址通常为远程仓库的URL,或者是你电脑上的文件路径。
  • git remote add is used to add a connection to a new remote repository.
    git remote add 命令用于添加一个新的远程仓库的连接。
  • git remote -v is used to see the details about a connection to a remote.
    git remote -v 命令用于查看远程仓库的详细信息。
阅读全文 »


由于台风影响,导致计算机中心服务器大规模断电,之前部署的云平台服务器重启后服务不可用。根据之前他们留下的文档,依次启动各个服务。启动 MySQL 时,遇到了如下问题:

“Another MySQL daemon already running with the same unix socket”

主要原因:
Linux 操作系统异常重启后,MySQL 有一个 mysql.sock 文件记录实例的运行状态,因为非正常关机,导致该文件继续存在,MySQL 在启动时会检查该文件,发现已经存在,那么就抛出此错误。

解决办法:
删除 mysql.sock 文件或者改名,重启 MySQL 服务后恢复正常。

阅读全文 »


创建一块新的分区

1
2
3
4
5
6
7
8
9
10
11
12
13
1. fdisk /dev/sda
p # 打印当前分区
n # 新建分区
p # 新建主分区
3 # 分区号,因为前面只建了两个分区
回车 # 使用提供的默认开始磁柱和结束磁柱
t # 分区类型8e表示LVM分区
8e
w # 写入分区表

2. partprobe # 重读分区表,不用重启电脑(PS:我使用这个命令没成功,还是需要重启电脑)

3. mkfs -t ext4 /dev/sda3 # 格式化新分区
阅读全文 »
0%