美文网首页
常用shell命令合集

常用shell命令合集

作者: Kidnight | 来源:发表于2022-01-28 13:05 被阅读0次

安装HomeBrew

  1. 官网安装链接(一般需要翻墙)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. 国内镜像资源
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

gitLab与ssh key

查看本机的ssh key

cat ~/.ssh/id_rsa.pub
生成ssh key
ssh-keygen -o -t rsa -C "your.email@example.com" -b 4096

复制id_rsa.pub文件里的内容

pbcopy < ~/.ssh/id_rsa.pub

安装git lfs

brew install git-lfs

使用git lfs

git lfs install  # 运行指令
git lfs track "*.png"  # 追踪所有后缀为png的文件
git lfs track  # 查看现有的文件追踪模式
git lfs ls-files  # 显示当前跟踪的文件列表

查看当前jdk版本号

/usr/libexec/java_home -V # for mac

设置文件权限

chmod 600 fileName  #只有拥有者有读写权限。
chmod 644 fileName  #只有拥有者有读写权限;而属组用户和其他用户只有读权限。
chmod 700  #只有拥有者有读、写、执行权限。
chmod 755  #拥有者有读、写、执行权限;而属组用户和其他用户只有读、执行权限。
chmod 755 fileName  #可写可执行
chmod 711 fileName  #拥有者有读、写、执行权限;而属组用户和其他用户只有执行权限。
chmod 666 fileName  #所有用户都有文件读、写权限。
chmod 777 fileName  #所有用户都有读、写、执行权限。

git相关命令

git reflog #查看git的操作日志
git reset --hard "6e0e8a04c"#通过git将代码恢复至6e0e8a04c的提交,针对已提交的
git reset --soft 6e0e8a04c #返回到6e0e8a04c节点, 保留修改,已有的改动会保留,在未提交中,git status或git diff可看
git checkout . #本地所有修改的,没有提交的,都返回原来的状态,针对未提交的
git statsh #把所有没有没有提交的修改暂存起来
git statsh pop #将暂存里的恢复成未提交状态
git branch -r #查看所有远端分支
git branch -a #查看本地和远程仓库的所有分支
git branch -d 分支名 #删除本地分支
git branch -D 分支名 #强制删除本地分支
git branch | xargs git branch -d #删除已经合并的分支
git branch | xargs git branch -D #强制删除当前分支之外的所有分支
git branch | grep 'dev*' | xargs git branch -d#删除分支名包含指定字符的分支
git pull --all # 拉取所有分支代码
git fetch --all #将本地所有分支与远程保持同步
git fetch #将本地分支与远程保持同步
git checkout -b 分支A origin/分支A #拉取远程分支并同时创建本地分支
git branch -r | grep -v \'\->\' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done #同步所有远程分支

相关文章

  • 常用shell命令合集

    安装HomeBrew 官网安装链接(一般需要翻墙) 国内镜像资源 gitLab与ssh key 查看本机的ssh ...

  • Shell命令汇总

    1、一般常用命令 (1)Shell 常用命令总结 (2)Shell的18条常用命令整理 2、文件操作常用命令 (1...

  • Shell脚本

    shell脚本学习笔记 shell命令的组合运用 常用命令组合

  • adb shell uiautomator 命令

    adb shell uiautomator 命令 Tags: adb_shell 常用到的命令: uiautoma...

  • Android NDK开发之旅31--NDK-Linux入门之基

    常用的Linux命令 shell命令有多种,Ubuntu默认使用 B shell。 命令行相关的命令 命令自动补全...

  • Shell命令合集

    C cat zdd 浏览文件zdd的内容 cat zdd1 zdd2 浏览多个文件的内容 cat -n zdd浏览...

  • HBASE SHELL常用命令

    HBASE SHELL常用命令 标签: HBase Shell 1. 进入hbase shell console ...

  • python 调用linux shell

    常用的几种shell命令调用方式:

  • adb命令

    常用非Shell命令:1、adb shell dumpsys activity top2、adb shell du...

  • 某些知识点的链接

    Markdown语法vim编辑器命令ubuntu终端命令shell常用命令shell命令解释 栈链的基本操作mys...

网友评论

      本文标题:常用shell命令合集

      本文链接:https://www.haomeiwen.com/subject/qrxtkrtx.html