摘要: 版本操作 回滚到某个版本 git reset --hard 9ea179a 恢复到最新版本 git reflog git reset --hard 最新版本号 分支操作 创建分支 git branch 分支名 切换分支 git checkout 分支名 master合并其他分支 git checko 阅读全文
posted @ 2021-07-26 21:46 贾正直 阅读(30) 评论(0) 推荐(0)
摘要: <script> function Phone(uname) { // 此方法每个实例共享 Phone.prototype.f = function() { console.log("prototype"); } this.name = uname; this.fun = function() { 阅读全文
posted @ 2021-07-26 16:04 贾正直 阅读(53) 评论(0) 推荐(0)