博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Git] set-upstream
阅读量:5097 次
发布时间:2019-06-13

本文共 341 字,大约阅读时间需要 1 分钟。

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

git push --set-upstream origin 

 

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 

is the same the --set-upstream

 

转载于:https://www.cnblogs.com/Answer1215/p/5188520.html

你可能感兴趣的文章
ORACLE 递归查询
查看>>
[Android] 开发第十天
查看>>
操作~拷贝clone()
查看>>
jQuery源码分析(2) - 为什么不用new jQuery而是用$()
查看>>
[转]【EL表达式】11个内置对象(用的少) & EL执行表达式
查看>>
ArrayList对象声明& arrayList.size()
查看>>
并发编程 线程
查看>>
网络编程
查看>>
关于“设计模式”和“设计程序语言”的一些闲话
查看>>
(一二九)获取文件的MineType、利用SSZipArchive进行压缩解压
查看>>
python学习4 常用内置模块
查看>>
Window7上搭建symfony开发环境(PEAR)
查看>>
ResolveUrl的用法
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
一些方便系统诊断的bash函数
查看>>
【转载】基于vw等viewport视区相对单位的响应式排版和布局
查看>>
<转>关于MFC的多线程类 CSemaphore,CMutex,CCriticalSection,CEvent
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>