- `git branch ` 会根据tag创建新的分支 - `git checkout newbranch` 切换到新的分支 - `git push origin newbranch` 把本地创建的分支提交到远程仓库 - `git branch` 查看分支 - `git branch `创建分支 - `git checkout `切换分支 - `git checkout -b `创
[Vim学习指南](https://www.linuxidc.com/Linux/2013-08/89096.htm) [Vim终极指南:所思即所得](https://blog.csdn.net/dc_726/article/details/78981756) [Python+Vim:天作之合](https://blog.csdn.net/dc_726/article/details/78927
[如何在Ubuntu上安装使用Docker](https://cloud.tencent.com/developer/article/1167995) [通过Docker Nextcloud 搭建自己的网盘](https://jingyan.baidu.com/article/86f4a73ebd6e9437d7526961.html) [在搬瓦工 VPS 的 Ubuntu 16.04 LTS

Docker commit 命令

docker commit :从容器创建一个新的镜像。

语法

docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

OPTIONS说明:

  • -a :提交的镜像作者;

  • -c :使用Dockerfile指令来创建镜像;

  • -m :提交时的说明文字;

  • -p :

j: 向下细微滚动窗口。  k:向上细微滚动窗口。(默认的 表示Ctrl+e,按住ctrl再按e,同理。在此感谢[Gnat]   http://jianshu.io/users/faa44ac9e895/latest_articles   的提醒 J:(Shift+j的意思,以下大写全部表示加Shift) 下一个标签页。 K:上一个标签页。 h:向左细微滚动窗口。l:向右细微滚动窗

git help

git version  # Display the version of git.

git help  # Prints the synopsis and a list of the most commonly used commands.
git help git  # Display the git man page.

git <COMMAND> -h  # Display the brief help.
git help <COMMAND/CONCEPT>  # Display help for specific subcommand or concept. "git  <COMMAND/CONCEPT> --help"

git help --help  # Display the help of 'git help'.
git help --all  # Print all available commands on the standard output.
git help --guide  # Print a list of the useful Git guides on the standard output.

git config

git config --list  # 显示所有配置信息
git config --global --list  # 显示全局配置信息
git config --local --list  # 显示local repository配置信息(在local repository目录下执行)

git remote

git remote  # 查看remote repository信息
git remote -v  # 查看remote repository详细信息。如果没有推送权限,就看不到remote repository的地址

git status

git status  # Show the working tree status. 
git status --short  # Give the output in the short-format.

git log

git log  # 查看commit日志
git log <file>  # 查看某个文件的commit日志
git log -3  # 
**高级包装工具(英语:Advanced Packaging Tools,简称:APT)是Debian及其衍生发行版(如:ubuntu)的软件包管理器。APT可以自动下载,配置,安装二进制或者源代码格式的软 件包,因此简化了 Unix系统上管理软件的过程,apt-get命令一般需要root权限执行,所以一般跟着sudo命令。** - apt-get中文参数 用法:

grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。

选项

-a 不要忽略二进制数据。
-A<显示列数> 除了显示符合范本样式的那一行之外,并显示该行之后的内容。
-b 在显示符合范本样式的

find命令用来在指定目录下查找文件。任何位于参数之前的字符串都将被视为欲查找的目录名。如果使用该命令时,不设置任何参数,则find命令将在当前目录下查找子目录与文件。并且将查找到的子目录和文件全部进行显示。

语法

find(选项)(参数)

选项

-amin<分钟>:查找在指定时间曾被存取过的文件或目录,单位以分钟计算;
-anewer<参考文件或目录>:查找其存取时间
    Page 1 of 2