DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
$ git checkout trunk Switched to branch 'trunk' $ git merge --no-ff branch-feature-AMBARI-12345 Updating ed28ff4..3ab2a7c ambari-server/include.xml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 ambari-server/include.xml |
- Fast-forwards are OK here since trunk is always the source of truth and we don't need extra "merge" commits in the feature branch
| Info | ||
|---|---|---|
| ||
Notice that the |
...