Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
howto:git [2022/10/19 20:41] – [Updating an Install from CVS] missing word digital man | howto:git [2024/10/11 22:21] (current) – Mention the rename of install/GNUmakefile to install-sbbs.mk digital man | ||
---|---|---|---|
Line 5: | Line 5: | ||
===== Updating an Install from CVS ===== | ===== Updating an Install from CVS ===== | ||
- | So you previously installed Synchronet for *nix using the '' | + | So you previously installed Synchronet for *nix using the '' |
- Follow the **[[# | - Follow the **[[# | ||
Line 113: | Line 113: | ||
- Run '' | - Run '' | ||
+ | ===== Reset ===== | ||
+ | |||
+ | If you're getting Git errors about local changes to files that you didn't make and you just want to reset every file in the repository to its latest upstream contents, run these commands: | ||
+ | |||
+ | $ cd / | ||
+ | $ git fetch --all | ||
+ | $ git reset --hard origin/ | ||
+ | $ git checkout master | ||
+ | | ||
+ | After the successful execution of these commands, your '' | ||
+ | | ||
===== Delete the Repo ===== | ===== Delete the Repo ===== | ||