11 2021 档案
摘要:git config --global user.name "你的名字或昵称" git config --global user.email "你的邮箱" ssh-keygen -t rsa -C "xxxxx@xxxxx.com" 在c:/Users/“你的用户名”/.ssh路径下,找到id_rs
阅读全文
摘要:获取当前时间 function show(){ var now = new Date(); var year = now.getFullYear(); //得到年份 var month = now.getMonth()+1;//得到月份 var date = now.getDate();//得到日期
阅读全文