1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
$ cd /path/to
$ tree
.
├── debhello-0.3
│ ├── Makefile
│ ├── README.md
│ ├── debian
│ │ ├── README.Debian
│ │ ├── README.source
│ │ ├── changelog
│ │ ├── clean
│ │ ├── control
│ │ ├── copyright
│ │ ├── dirs
│ │ ├── gbp.conf
│ │ ├── install
│ │ ├── links
│ │ ├── patches
│ │ │ └── series
│ │ ├── rules
│ │ ├── salsa-ci.yml
│ │ ├── source
│ │ │ ├── format
│ │ │ ├── local-options.ex
│ │ │ └── local-patch-header.ex
│ │ ├── tests
│ │ │ └── control
│ │ ├── upstream
│ │ │ └── metadata
│ │ └── watch
│ └── src
│ └── hello.c
├── debhello-0.3.tar.gz
└── debhello_0.3.orig.tar.gz -> debhello-0.3.tar.gz
8 directories, 24 files
|