java开发实战(第十一天)

  1. 1. jquery 介绍
    1. 1.1. 什么是jquery
    2. 1.2. 核心思想
  2. 2. git规则更新断更日记
    1. 2.1. 设置好以后相比于令牌更快

jquery 介绍

  1. jquery hellp world
  2. jquery 选择器
  3. jquery 过滤器
  4. jquery 元素删选

    什么是jquery

    javascript和查询(query),辅助javascript开发的js类库。

    核心思想

    write less,do more(写的更少,做的更多)

git规则更新断更日记

今天提交代码,push到GitHub上,突然出现这个问题。

remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.

remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.

fatal: unable to access ‘https://github.com/zhoulujun/algorithm.git/': The requested URL returned error: 403

git config –global –list
git config –global user.name “yourname”
git config –global user.email
ssh-keygen -t rsa -C “这里换上你的邮箱”
会在/Users/***/路径下生成一个.ssh文件夹,密钥就存储在其中
到git仓库,添加秘钥,
点击Add SSH key
ssh -T git@github.com 测试一下通不通,通了显示hi

设置好以后相比于令牌更快

但安全保证度不高