21 lines
555 B
HTML
21 lines
555 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Document</title>
|
||
</head>
|
||
<body>
|
||
<!--
|
||
git 操作代码仓库的一个工具
|
||
代码仓库:github(国外) gitee (码云)
|
||
git init 初始化
|
||
git remote -v 检测是否已经连接远程库
|
||
git remote add origin url 添加远程库
|
||
git pull origin master
|
||
|
||
|
||
-->
|
||
</body>
|
||
</html> |