test@uat:/usr/server/app_server# git config --local -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git@code.aliyun.com:app/app_server.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
test@uat:/usr/server/app_server#

test@uat:/usr/server/app_server# git pull
remote: Counting objects: 6, done.
remote: Total 6 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (6/6), done.
From code.aliyun.com:app/app_server
* [new branch] dev -> origin/dev
0a1307e4..1ce7ef06 hotfix_master -> origin/hotfix_master
23eda15c..1ce7ef06 master -> origin/master
* [new branch] sit -> origin/sit
0a1307e4..1ce7ef06 test -> origin/test
faf871a8..1ce7ef06 uat -> origin/uat
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

git branch --set-upstream-to=origin/<branch> uat

test@uat:/usr/server/app_server# git pull origin uat

From code.aliyun.com:app/app_server
* branch uat -> FETCH_HEAD
Updating faf871a8..1ce7ef06
Fast-forward
src/app/settings_conf/sit.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)


test@uat:/usr/server/app_server# git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

git branch --set-upstream-to=origin/<branch> uat

test@uat:/usr/server/app_server# git branch --set-upstream-to=origin/uat uat
Branch 'uat' set up to track remote branch 'uat' from 'origin'.

test@uat:/usr/server/app_server# git config --local -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=git@code.aliyun.com:app/app_server.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.uat.remote=origin
branch.uat.merge=refs/heads/uat
test@uat:/usr/server/app_server#

最新文章

  1. jquery_DOM笔记2
  2. Javascript - Arraylike的7种实现
  3. node-webkit教程(11)Platform Service之shell
  4. codeforces 713B B. Searching Rectangles(二分)
  5. Greedy:Yogurt factory(POJ 2393)
  6. install Matlab2016b on Ubuntu 14.04
  7. linux中django+apache配置
  8. SELECT样式,兼容IE6
  9. QT中16进制字符串转汉字
  10. iOS Dev (21) 用 AVPlayer 播放一个本地音频文件
  11. QThread 与 QObject的关系(QObject可以用于多线程,可以发送信号调用存在于其他线程的slot函数,但GUI类不可重入)
  12. Linux-chown命令(1)
  13. 【转】Spark Streaming和Kafka整合开发指南
  14. java人员正确使用IDEA 的方式
  15. print 函数设置字体颜色
  16. flex布局-css
  17. [20171130]关于rman备份疑问.txt
  18. better-scroll影响vue中radio和checkbox的双向数据绑定
  19. 《马哥出品高薪linux运维教程》wingkeung学习笔记-linux基础入门课程
  20. Android Retrofit2 网路编程

热门文章

  1. Vue2+Koa2+Typescript前后端框架教程--03后端路由和三层模式配置
  2. 《HelloGitHub》第 57 期
  3. Spring4.3入门 Spring 依赖关系
  4. Adnroid 源码学习笔记:Handler 线程间通讯
  5. [leetcode]79.Search Word 回溯法
  6. 浅谈Java并发编程系列(八)—— LockSupport原理剖析
  7. el-input限制只能输入数字(开发小记)
  8. 十八般武艺玩转GaussDB(DWS)性能调优:SQL改写
  9. 【JavaWeb】书城项目
  10. LeetCode145 二叉树的后序遍历