2013年9月23日
摘要: 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... 阅读全文
posted @ 2013-09-23 11:09 羞涩的流氓 阅读(353) 评论(0) 推荐(1) 编辑
摘要: 1、repo sync 同步代码 2、git checkout branch 切换分支 3、git add . 添加到本地 4、git status 查看修改状态 5、git commit –m "” 提交描述 6、repo push 提交到服务器 阅读全文
posted @ 2013-09-23 11:03 羞涩的流氓 阅读(176) 评论(0) 推荐(1) 编辑
摘要: 1、图片:requestCode返回的标识 Intent innerIntent = new Intent(Intent.ACTION_GET_CONTENT); innerIntent.setType( "image/*"); Intent wrapperIntent = Intent.createChooser(innerIntent, null);((Activity) contex... 阅读全文
posted @ 2013-09-23 10:49 羞涩的流氓 阅读(354) 评论(0) 推荐(1) 编辑