[root@localhost gitgame]# git clone https://github.com/hgarc014/git-game.git
Cloning into 'git-game'... remote: Enumerating objects: 243, done. remote: Total 243 (delta 0), reused 0 (delta 0), pack-reused 243 Receiving objects: 100% (243/243), 2.44 MiB | 419.00 KiB/s, done. Resolving deltas: 100% (84/84), done.
通常刚安装完git都会进行配置用户信息
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
git 存在三份配置文件。
说明: 使用版本 kafka_2.12-2.0.0
[root@localhost kafka]# wget https://mirrors.cnnic.cn/apache/kafka/2.0.0/kafka_2.12-2.0.0.tgz [root@localhost kafka]# tar -zxvf kafka_2.12-2.0.0.tgz [root@localhost kafka]# mv kafka_2.12-2.0.0 /usr/ [root@localhost kafka]# mv kafka_2.12-2.0.0/ kafka
<html> <head> <title></title> <!-- 2.页面级css --> <style type="text/css"> div{ width:100px; height:100px; background-color: red; } </style> <!-- 3.引入外部CSS文件 --> <link rel="stylesheet" type="text/css" href="url"> </head> <body> <!-- 1.行间样式 --> <div style="width:100px;height:100px;background-color: red;"></div> </body> </html>