public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories
@ 2024-03-07 14:23 Stefan Lendl
  2024-03-07 14:23 ` [pbs-devel] [PATCH v2 proxmox-backup 2/2] gitignore: make docs output Stefan Lendl
  2024-03-08  7:02 ` [pbs-devel] applied: [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Thomas Lamprecht
  0 siblings, 2 replies; 4+ messages in thread
From: Stefan Lendl @ 2024-03-07 14:23 UTC (permalink / raw)
  To: pbs-devel

Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
Reviewed-by: Stefan Hanreich <s.hanreich@proxmox.com>
---

Changes v1 -> v2:
* ignore target/ in all subdirectories

 .gitignore | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 487a953f..3856dcf0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,14 +14,15 @@
 /*.deb
 /*.dsc
 /*.tar*
+/.do-cargo-build
 /Cargo.lock
 /docs/output
 /etc/proxmox-backup-proxy.service
 /etc/proxmox-backup.service
 /proxmox-backup-server-dpkg-contents.txt
-/target
 /www/.lint-incremental
 /www/js/
 __pycache__/
 build/
 local.mak
+target/
-- 
2.43.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [pbs-devel] [PATCH v2 proxmox-backup 2/2] gitignore: make docs output
  2024-03-07 14:23 [pbs-devel] [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Stefan Lendl
@ 2024-03-07 14:23 ` Stefan Lendl
  2024-03-08  7:03   ` [pbs-devel] applied: " Thomas Lamprecht
  2024-03-08  7:02 ` [pbs-devel] applied: [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Thomas Lamprecht
  1 sibling, 1 reply; 4+ messages in thread
From: Stefan Lendl @ 2024-03-07 14:23 UTC (permalink / raw)
  To: pbs-devel

Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
---
 .gitignore | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/.gitignore b/.gitignore
index 3856dcf0..f2e59bef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,7 +16,26 @@
 /*.tar*
 /.do-cargo-build
 /Cargo.lock
+/docs/config/acl/roles.rst
+/docs/config/datastore/config.rst
+/docs/config/domains/config.rst
+/docs/config/media-pool/config.rst
+/docs/config/remote/config.rst
+/docs/config/sync/config.rst
+/docs/config/tape-job/config.rst
+/docs/config/tape/config.rst
+/docs/config/user/config.rst
+/docs/config/verification/config.rst
 /docs/output
+/docs/pmt/synopsis.rst
+/docs/pmtx/synopsis.rst
+/docs/proxmox-backup-client/catalog-shell-synopsis.rst
+/docs/proxmox-backup-client/synopsis.rst
+/docs/proxmox-backup-debug/synopsis.rst
+/docs/proxmox-backup-manager/synopsis.rst
+/docs/proxmox-file-restore/synopsis.rst
+/docs/proxmox-tape/synopsis.rst
+/docs/pxar/synopsis.rst
 /etc/proxmox-backup-proxy.service
 /etc/proxmox-backup.service
 /proxmox-backup-server-dpkg-contents.txt
-- 
2.43.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [pbs-devel] applied: [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories
  2024-03-07 14:23 [pbs-devel] [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Stefan Lendl
  2024-03-07 14:23 ` [pbs-devel] [PATCH v2 proxmox-backup 2/2] gitignore: make docs output Stefan Lendl
@ 2024-03-08  7:02 ` Thomas Lamprecht
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2024-03-08  7:02 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion, Stefan Lendl

Am 07/03/2024 um 15:23 schrieb Stefan Lendl:
> Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
> Reviewed-by: Stefan Hanreich <s.hanreich@proxmox.com>

where exactly did Stefan Hanreich send a r-b tag for this?

FWICT he merely suggested some changes, that is _not_ the same
as providing a reviewed-by tag.

applied with above trailer removed.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [pbs-devel] applied: [PATCH v2 proxmox-backup 2/2] gitignore: make docs output
  2024-03-07 14:23 ` [pbs-devel] [PATCH v2 proxmox-backup 2/2] gitignore: make docs output Stefan Lendl
@ 2024-03-08  7:03   ` Thomas Lamprecht
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Lamprecht @ 2024-03-08  7:03 UTC (permalink / raw)
  To: Proxmox Backup Server development discussion, Stefan Lendl

Am 07/03/2024 um 15:23 schrieb Stefan Lendl:
> Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
> ---
>  .gitignore | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
> 
>

applied, but folded in a change to make this more general, thanks!




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-08  7:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-07 14:23 [pbs-devel] [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Stefan Lendl
2024-03-07 14:23 ` [pbs-devel] [PATCH v2 proxmox-backup 2/2] gitignore: make docs output Stefan Lendl
2024-03-08  7:03   ` [pbs-devel] applied: " Thomas Lamprecht
2024-03-08  7:02 ` [pbs-devel] applied: [PATCH v2 proxmox-backup 1/2] gitignore: add target/ in sub-directories Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal