You are not allowed to add pages
This is an old revision of the document!
$ git config --global user.name "Frank Deng" $ git config --global user.email "frank.deng@oracle.com"
$ git clone https://github.com/frdeng/oraclelinux.git
$ git remote add upstream https://github.com/boxcutter/oraclelinux.git
$ git fetch upstream
$ git branch --set-upstream-to=upstream/master master
$ git checkout -b newfix
$ git add .
$ git commit -m "comments"
$ git push --set-upstream origin newfix
$ git checkout master $ git fetch upstream $ git rebase upstream/master $ git push origin master
$ git branch --track remotes/origin/release-3.1
$ git diff release-3.1..master -- version/
diff --git a/version/version.go b/version/version.go
index 6cb3c08..9134ceb 100644
--- a/version/version.go
+++ b/version/version.go
@@ -26,7 +26,7 @@ import (
var (
// MinClusterVersion is the min cluster version this etcd binary is compatible with.
MinClusterVersion = "3.0.0"
- Version = "3.1.0+git"
+ Version = "3.2.0+git"
APIVersion = "unknown"
// Git SHA Value will be set during build