Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howto:git [2022/02/12 01:27] – Mention the nightly build branch (for the rare master branch build failures) digital manhowto:git [2022/10/19 20:31] – [Merge Upstream Changes into Your Branch] Need merge from remote tracking 'master' branch digital man
Line 34: Line 34:
 ==== Branches ==== ==== Branches ====
  
-The ''master'' branch may occasionally not successfully for your specific platform. If this happens, simply checking out the latest successful-nightly-build for your platform will resolve this issue. e.g. for Linux-x64:+The ''master'' branch may occasionally not successfully build for your specific platform. If this happens, checking out the latest successful-nightly-build for your platform should resolve this issue. e.g. for Linux-x64:
  
-  git checkout dailybuild_linux-x64+  git checkout dailybuild_linux-x64
  
 +If you wish to switch back to the ''master'' branch a later point:
 +
 +  $ git checkout master
 ==== Read-only Directories ==== ==== Read-only Directories ====
  
Line 61: Line 64:
  
   $ git pull   $ git pull
-  $ git merge master+  $ git merge origin/master
  
 ===== Push Without Merge Commit ===== ===== Push Without Merge Commit =====
Line 84: Line 87:
  
 To create a convenient alias for the ''git pull --rebase'' usage  above: To create a convenient alias for the ''git pull --rebase'' usage  above:
-  git config --global alias.up "pull --rebase --autostash"+  git config --global alias.up "pull --rebase --autostash"
 Now you can just run ''git up'' instead of ''git pull''. Now you can just run ''git up'' instead of ''git pull''.
 ===== Push Without Password ===== ===== Push Without Password =====