摘要:
1.Setting you git info $ git config --global user.name yourname $ git config --global user.email youemail 2. Create a directory $ mkdir git_work (by yourself) $ cd git_work 3. M... 阅读全文
摘要:
1、repo sync 同步代码 2、git checkout branch 切换分支 3、git add . 添加到本地 4、git status 查看修改状态 5、git commit –m "” 提交描述 6、repo push 提交到服务器 阅读全文
摘要:
1、图片:requestCode返回的标识 Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT); innerIntent.setType( "image/*"); Intent wrapperIntent = Intent.createChooser(innerIntent, null);((Activity) contex... 阅读全文