Git ——Tool】的更多相关文章

1. install apt-get install git 2. 使用 ssh-keygen -C "email" -t rsa  生成一个ssh pub key,将生成的id_rsa.pub文件中的内容添加在 github的sshkey中. mkdir test  and cd test 创建一个测试项目文件 git init 本地初始化一个仓库 cp *.py ./   找点代码文件到此 git add .       将当前目录下的所有文件添加至本地仓库中 git commit…
Git: 何为Git: Git 是一个可以实时记录文件变化.维护文件的安全的一个仓库! Git仓库是由** Linux 系统之父 Linus Torvalds ** 创建的一个开源 的软件!Github 是Git仓库的 云仓库,可以完成文件随时推送,它还采取SSH加密方式传输,这使得文件管理更加安全.方便 背景: 1.很多人都知道,Linus在1991年创建了开源的Linux,从此,Linux系统不断发展,已经成为最大的服务器系统软件了. Linus虽然创建了Linux,但Linux的壮大是靠全…
First thing first, you can easily install git in all 3 mainstream OS, Windows, Linux, OSX. Get windows installer on https://git-for-windows.github.io/. Note that in Windows, the official git tool was called "git for windows" as well as msysgit.…
w https://git-scm.com/book/en/v1/Git-Internals-Plumbing-and-Porcelain Git is a content-addressable filesystem. Great. What does that mean? It means that at the core of Git is a simple key-value data store. You can insert any kind of content into it,…
install python extension Press F1, and input "ext install python". Then the icon at the leftmost side of the status bar is saying that something is being installed. Need to wait a while. Use command "ext" + a space to see installed ext…
1 Set up vimdiff The vimdiff as a merge tool will display several buffers to show the yours/theirs/original changes. The key point is to set up the vimdiff so that the buffer number in the vimdiff status line is visible. First, add following code int…
转自别人的文章(http://www.cnblogs.com/emouse/archive/2013/06/07/3124063.html),一些看不清楚的图片替换了一下. In this blog  entry the setup of  a cross-compiling development environment for the Raspberry Pi will be demonstrated. This will include the Official Raspbian (arm…
目的: 前期学习了一些机器学习基本算法,实际企业应用中算法是核心,运行的环境和数据处理的平台是基础. 手段: 搭建简易hadoop集群(由于机器限制在自己的笔记本上通过虚拟机搭建) 一.基础环境介绍 win10 vmware15.0.0 3 ubuntu 虚拟机(1 台作为master ,另外2台作为 slave1.slave2) hadoop2.8.5 jdk1.8 二.搭建步骤 1. 安装vmware ,安装ubuntu 先安装一台,后面配置完成后直接克隆 (此处不作详细介绍,可参考其它文档…
1. Select a Linux Distribution Only Ubuntu 14.04 (Trusty), Fedora 21 (or Fedora 22) and CentOS/RHEL 7 are documented here. OpenStack also runs and is packaged on other flavors of Linux such as OpenSUSE and Debian. 2. Install Selected OS In order to c…
[k8s实战一]Jenkins 部署应用到 Kubernetes 01 本文主旨 目标是演示整个Jenkins从源码构建镜像到部署镜像到Kubernetes集群过程. 为了简化流程与容易重现文中效果,做出如下操作: 使用 VBox 创建两台虚拟机 使用 Minikube 初始化简单的k8s集群 使用 GitHub 作为代码仓库,本文内容所有配置文件均会上传至此仓库 https://github.com/hellxz/cicd-demo.git 02 CI/CD流程 根据我画的这张图,Jenkin…