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
Last revisionBoth sides next revision
howto:git [2022/10/19 20:41] – [Updating an Install from CVS] missing word digital manhowto:git [2024/03/22 21:59] – Create [Reset] section using Deuce's steps digital man
Line 113: Line 113:
   - Run ''git diff'' in the repo (show changes, including white-space) to confirm that either //no changes// or only your //expected// changes are shown.   - Run ''git diff'' in the repo (show changes, including white-space) to confirm that either //no changes// or only your //expected// changes are shown.
  
 +===== Reset =====
 +
 +If you're getting errors about local changes to files that you didn't make and you just want to reset ever file in the repo to its latest upstream contents, run these commands:
 +
 +  $ cd /path/to/sbbs/repo
 +  $ git fetch --all
 +  $ git reset --hard origin/master
 +  $ git checkout master
 +  
 +After the successful execution of these commands, your sbbs Git repo should be reset back to the current upstream contents.
 +  
 ===== Delete the Repo ===== ===== Delete the Repo =====