提交更改到Gerrit服务器

发布于 2017-09-26 · 本文总共 840 字 · 阅读大约需要 3 分钟

一般都是git push 但是现在要push到一个虚拟的分支上面 Usually when you push to a remote git, you push to the reference ‘/refs/heads/branch’, but when working with Gerrit you have to push to a virtual branch representing “code review before submission to branch”. This virtual name space is known as /refs/for/

Subheading

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec at mauris ante. Cras sit amet porta quam. Donec eu gravida elit. Sed a diam eget sem lacinia maximus vel et elit. Nullam id egestas nulla. Duis dapibus at quam eu dapibus. Maecenas ullamcorper placerat eros, eu posuere enim bibendum eget. Phasellus mollis enim molestie tortor aliquam, nec auctor ligula fringilla.

Sample Code

package main

import (
    "net/http"
)

func response(rw http.ResponseWriter, request *http.Request) {
    rw.Write([]byte("Hello world."))
}

func main() {
    http.HandleFunc("/", response)
    http.ListenAndServe(":3000", nil)
}

List

  • Do this
  • Do that
  • Bla Bla Bla
  • Go to Sleep

This link has no title attribute.




本博客所有文章采用的授权方式为 自由转载-非商用-非衍生-保持署名 ,转载请务必注明出处,谢谢。
声明:
本博客欢迎转发,但请保留原作者信息!
博客地址:邱文奇(qiuwenqi)的博客;
内容系本人学习、研究和总结,如有雷同,实属荣幸!
阅读次数:

文章评论

comments powered by Disqus


章节列表