diff options
author | friendica <info@friendica.com> | 2015-01-06 11:40:31 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-06 11:40:31 -0800 |
commit | 7ee55674212c2266cc630669ba703757a0120a26 (patch) | |
tree | 6c7b0c1f3b052d06819ecce1a0ab03df68a63c43 /doc | |
parent | e20d82ab0b839ac4a93d91f5aeaec562b7fecd18 (diff) | |
parent | 8c5e5c34494c9eccbf41f7bd7561febb94c713e3 (diff) | |
download | volse-hubzilla-7ee55674212c2266cc630669ba703757a0120a26.tar.gz volse-hubzilla-7ee55674212c2266cc630669ba703757a0120a26.tar.bz2 volse-hubzilla-7ee55674212c2266cc630669ba703757a0120a26.zip |
Merge branch 'master' into trinidad
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dev_beginner.bb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/dev_beginner.bb b/doc/dev_beginner.bb index 4fc0fe455..c00cafb9d 100644 --- a/doc/dev_beginner.bb +++ b/doc/dev_beginner.bb @@ -347,6 +347,11 @@ surfer@debian:/var/www$ git config --global user.name "Your Name" surfer@debian:/var/www$ git config --global user.email "your@mail.com"
[/code]
+Create a descriptive topic branch
+[code]
+surfer@debian:/var/www$ git checkout -b dev_beginning
+[/code]
+
Make sure your local repository is up-to-date with the main project.
Add the original repository as a remote named “upstream” if not done yet
[code]
@@ -356,11 +361,7 @@ surfer@debian:/var/www$ git remote add upstream https://github.com/friendica/red Fetch the newest work from that remote
[code]
surfer@debian:/var/www$ git fetch upstream
-[/code]
-
-Create a descriptive topic branch
-[code]
-surfer@debian:/var/www$ git checkout -b dev_beginning
+surfer@debian:/var/www$ git merge upstream/master
[/code]
Hint: You can list the branches
@@ -382,12 +383,12 @@ surfer@debian:/var/www$ git add doc/dev_beginner.bb Commit the changes to your local branch. This will open an editor to provide a message.
[code]
-surfer@debian:/var/www$ git commit
+surfer@debian:/var/www$ git commit -a
[/code]
Push back up to the same topic branch online
[code]
-surfer@debian:/var/www$ git push origin dev_beginning
+surfer@debian:/var/www$ git push
[/code]
Now you can go to your (online) account at github and create the pull request.
|