摘要:
如果你之前没有提交过文件,而你在git push的时候出现Everything up-to-date,并且文件也没有提交上去.可能是因为你没有git add 和 git commit. 需要重新执行 1 git add . 2 git commit -m "message" 3 git push o 阅读全文
摘要:
git checkout -- file 撤销指令 让文件回到最近git commit 或git add 时的状态 > 注意 -- 左右都有空格 否则会报错 git init >舒适化git仓库的命令 git status git status-s > 查看文件状态的命令 git add . > 一 阅读全文
摘要:
1 xhr 实现 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <meta na 阅读全文
摘要:
原生xhr 请求代码 get 请求 1 <html lang="en"> 2 <head> 3 <meta charset="UTF-8" /> 4 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 5 <meta name="viewp 阅读全文