摘要:class QuestionCheck extends Component { constructor(props) { super(props); this.state = { checked: props.checked }; } changeSel = () => { this.props.setCheckd(this.props, !this.state.checked); this.se
阅读全文
08 2019 档案
摘要:git clone "你的仓库地址" 利用命令行提交代码步骤提交代码之前,需先从服务器上面拉取代码,以防覆盖别人代码。1:拉取服务器代码git pull2:查看当前工作目录树的工作修改状态git status状态:1:Untracked: 未跟踪, 此文件在文件夹中, 但并没有加入到git库, 不参
阅读全文