摘要:
一、git 在当前分支上提交代码 gst //查看状态 或者git status git add . //添加 gst //查看是否是待提交状态 git commit -m '备注' //备注信息 git push origin '推送的分支' 二、git 把master的内容更新到分支上 git 阅读全文
摘要:
function A(name,color){ this.name=name; this.color=color; } A.prototype.getColor=function(){ return this.color } A.prototype.getName=function(){ retur 阅读全文