当前位置:  编程技术>移动开发
本页文章导读:
    ▪2013.11.14(二) ——— git学习之提交远程库        2013.11.14(2) ——— git学习之提交远程库 2013.11.14(2) ——— git学习之提交远程库git push 远端库名称  本地分支名称 :远程分支的名称git push origin dev:dev每次这样很麻烦,可以简化为git pu.........
    ▪ textView的returnKey事件如何捕获        textView的returnKey事件怎么捕获? 可以这样解决,使用UITextViewDelegate- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text; {    if ([@"\n" isEqualToString:text] == YES) {.........
    ▪ 天蓝色的上箭头图标       蓝色的上箭头图标 蓝色的上箭头图标 ......

[1]2013.11.14(二) ——— git学习之提交远程库
    来源: 互联网  发布时间: 2014-02-18
2013.11.14(2) ——— git学习之提交远程库
2013.11.14(2) ——— git学习之提交远程库

git push 远端库名称  本地分支名称 :远程分支的名称

git push origin dev:dev


每次这样很麻烦,可以简化为
git push

但是 git里面有一个全局变量可以控制这个push的方式

如果执行
git push

会有什么后果呢

git2.0之前 会提交所有的分支
git2.0 只会提交本分支,并且分支名字一样

push.default

Defines the action git push should take if no refspec is given on the command line, no refspec is configured in the remote, and no refspec is implied by any of the options given on the command line. Possible values are:

nothing - do not push anything.
matching - push all branches having the same name in both ends. This is for those who prepare all the branches into a publishable shape and then push them out with a single command. It is not appropriate for pushing into a repository shared by multiple users, since locally stalled branches will attempt a non-fast forward push if other users updated the branch. 
This is currently the default, but Git 2.0 will change the default to simple.
upstream - push the current branch to its upstream branch. With this, git push will update the same remote ref as the one which is merged by git pull, making push and pull symmetrical. See "branch.<name>.merge" for how to configure the upstream branch.
simple - like upstream, but refuses to push if the upstream branch’s name is different from the local one. This is the safest option and is well-suited for beginners. It will become the default in Git 2.0.
current - push the current branch to a branch of the same name.
The simple, current and upstream modes are for those who want to push out a single branch after finishing work, even when the other branches are not yet ready to be pushed out. If you are working with other people to push into the same shared repository, you would want to use one of these.


大体意思是:

nothing:不推任何东西(要来做什么用?)。
matching:将两边名字能匹配的分支推上去。
upstream:将当前分支推到它的upstream分支。
simple:将当前分支推到它的upstream分支,但名字不匹配时拒绝。这是最安全的选项并且git 2.0之后会默认为这个。
current:将当前分支推到与它同名的分支上。


所以想要用git push的话 就设置一下
git config --global push.default simple




每次提交前,最好都执行
git fetch 
git rebase



这样防止代码冲突,类似于svn的先update后commit


git fetch 和 git pull

git fetch 是把更新了本地分支,但是没有合并 rebase的时候 才会尝试合并
git pull 则会强制更新合并到本地




    
[2] textView的returnKey事件如何捕获
    来源: 互联网  发布时间: 2014-02-18
textView的returnKey事件怎么捕获?

可以这样解决,使用UITextViewDelegate
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text; {

    if ([@"\n" isEqualToString:text] == YES) {
        你的响应方法
        return NO;
    }
    return YES;
}

 

不过这是在你不需要换行的情况下,如果你需要换行的话,那这个textview也就换不了行了,相当于是一个textField,只不过可以显示更多的内容


    
[3] 天蓝色的上箭头图标
    来源: 互联网  发布时间: 2014-02-18
蓝色的上箭头图标

蓝色的上箭头图标


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
浙ICP备11055608号-3 iis7站长之家
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3