:: [DNG] Local netman sources fully re…
Top Page
Delete this message
Reply to this message
Author: Edward Bartolo
Date:  
To: dng, aitor_czr, Rainer Weikusat, tilt!
Subject: [DNG] Local netman sources fully restored.
Hi All,

Finally, I fully restored my local netman sources from a full system
backup I made on the 8th December 2015. Updating was a matter of only
deleting the netman/debian directory and using "git pull".

My goal was always to use the least invasive of methods to recover my
sources. This was why I was very cautious about using any git command
that would impact the uploaded sources.

This experience is shouting at me to always keep a backup whenever I git push.

The terminal text output of the procedure is shown below.

---------------

edbarx@edbarx-pc:~/netman_from_backup_08.12.2015$ rm -rf debian
edbarx@edbarx-pc:~/netman_from_backup_08.12.2015$ ls
backend.pas               helpwndu.lfm  netman_icons.lrs
backend_src               helpwndu.pas  netman.lpi
backup                    lib           netman.lpr
common_functions.pas      LICENSE       netman.lps
connect_info.lfm          mainform.lfm  netman.res
connect_info.pas          mainform.pas  network-transmit-receive.ico
formeditconnectprops.lfm  Makefile      network-wired-disconnected.ico
formeditconnectprops.pas  netman.ico    README
edbarx@edbarx-pc:~/netman_from_backup_08.12.2015$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
edbarx@edbarx-pc:~/netman_from_backup_08.12.2015$ git pull
remote: Counting objects: 40, done.
remote: Compressing objects: 100% (33/33), done.
remote: Total 40 (delta 15), reused 0 (delta 0)
Unpacking objects: 100% (40/40), done.

>From git.devuan.org:edbarx/netman

   5f010d7..85ee69e  master     -> origin/master
Updating 5f010d7..85ee69e
Fast-forward
 README                         |   3 +-
 debian/README.Debian           |   6 +++
 debian/README.source           |  10 ++++
 debian/changelog               |   5 ++
 debian/compat                  |   1 +
 debian/control                 |  25 +++++++++
 debian/copyright               |  25 +++++++++
 debian/docs                    |   1 +
 debian/netman-backend.install  |   1 +
 debian/netman-backend.postinst |  19 +++++++
 debian/netman-gui.install      |   3 ++
 debian/netman-gui.postinst     |  38 ++++++++++++++
 debian/netman.substvars        |   1 +
 debian/rules                   |  13 +++++
 debian/source/format           |   1 +
 debian/source/include-binaries |   2 +
 netman.desktop                 |  10 ++++
 netman.lps                     | 116 +++++++++++++++++++++++++----------------
 18 files changed, 234 insertions(+), 46 deletions(-)
 create mode 100644 debian/README.Debian
 create mode 100644 debian/README.source
 create mode 100644 debian/changelog
 create mode 100644 debian/compat
 create mode 100644 debian/control
 create mode 100644 debian/copyright
 create mode 100644 debian/docs
 create mode 100644 debian/netman-backend.install
 create mode 100644 debian/netman-backend.postinst
 create mode 100644 debian/netman-gui.install
 create mode 100644 debian/netman-gui.postinst
 create mode 100644 debian/netman.substvars
 create mode 100755 debian/rules
 create mode 100644 debian/source/format
 create mode 100644 debian/source/include-binaries
 create mode 100644 netman.desktop
edbarx@edbarx-pc:~/netman_from_backup_08.12.2015$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
-------------------


Edward