When you want to push your local branch to remote branch, for the first push:

git push --set-upstream origin <branch_name>

The reason to set 'up-stream'  is that you want this branch to be tracked against, so you can just type:

git push

Tips:

git push -u origin <branch_name>

is the same the --set-upstream

最新文章

  1. destoon去掉会员注册email验证
  2. linux shell 之 crontab(定时任务)详解
  3. C++ Primer 第九章 顺序容器
  4. HDFS Append时packet的格式以及DataNode对block/checksum文件的处理
  5. Sizing and Capacity Planning for SharePoint 2013 - Resources
  6. 基于CoreText的基础排版引擎
  7. 图解Android - Android GUI 系统 (2) - 窗口管理 (View, Canvas, Window Manager)
  8. 数据库(学习整理)----2--关于Oracle用户权限的授权和收权
  9. VS2008中Run-Time Check Failure #2 - Stack around the variable 'xxx' was corrupted 错误解决方法
  10. java 中的常用类
  11. Hive篇---Hive与Hbase整合
  12. VS2013安装Boost
  13. NetBus —— 让你的 App 内部随处感知网络的变化
  14. Windows桌面或服务器环境下嵌入JavaScript支持(JSRT)
  15. Linux系统中Redis和Tomcat的PID文件路径设置
  16. Maven入门介绍
  17. webServlet(&quot;/&quot;) 和 webServlet(&quot;/*&quot;) 的区别
  18. I2S音频总线学习
  19. 大数据在教育中的应用 part2笔记
  20. LibreOj 6279数列分块入门 3 练习了一下set

热门文章

  1. Android的TextView使用Html来处理图片显示、字体样式、超链接等
  2. 调用百度地图API实现手机自动定位 (逆地址解析)
  3. 在IIS集成管道中使用OWIN Middleware
  4. oracle时间戳转换
  5. hdu find the safest road
  6. tttt
  7. js中的console
  8. Project Euler #80: Square root digital expansion
  9. zip格式压缩、解压缩(C#)
  10. Android中focusable属性的妙用——底层按钮的实现