bash命令

cat /xxx/file       # 查看文件
touch /xxx/file     # 创建文件
du -sh /xxx/path    # 查看文件占据空间

git记录

全局设置:

git config --list                      # 查看
git config --global user.name "xxx"    # 设置
git config --global --unset user.name  # 删除

合并之后会出现冲突,但是此时不想解决,想放弃合并:

git merge --abort

标签: none

添加新评论