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

本文共 287 字,大约阅读时间需要 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

 

转载地址:http://vqxoa.baihongyu.com/

你可能感兴趣的文章
静态数据成员
查看>>
WordPress优化:更改网站的固定链接并将旧链接重定向到新链接
查看>>
linux 挂载 windows, samba的共享文件
查看>>
【NetApp】system manager使用域用户访问
查看>>
【NetApp】VSC注册vcenter不成功
查看>>
Performance Tuning Guidelines for Windows Server
查看>>
再议gluPerspective和gluLookAt的关系
查看>>
eclipse中maven项目jar包不会自动下载解决办法
查看>>
expand linux partition to new size
查看>>
Hadoop 离线安装 CDH5.1 第一章:离线环境部署
查看>>
单向链表程序
查看>>
Exchange 2019 安装的前提条件
查看>>
《白帽子讲WEB安全》学习笔记之第10章 访问控制
查看>>
linux 服务管理
查看>>
KVM增加硬盘
查看>>
React yarn安装umi后 umi -v查询版本失败
查看>>
gitlab-ce-10.0.4-ce.0.el6.x86_64 安装配置
查看>>
virt-v2v 转换vcenter上的虚拟机到kvm
查看>>
APUE读书笔记-18终端输入输出-12终端窗口大小
查看>>
C#设计模式系列:享元模式(Flyweight)
查看>>