Re: Git sources of git-core (for SID) out-of-date?

2025-01-26 Thread Jonathan Nieder
Hi Michal, Michal Maruska wrote: > sid has version 1:2.47.2-0.1 > https://packages.debian.org/source/sid/git mentions as git source: > https://repo.or.cz/w/git/debian.git/ > > which indeed has the relevant branch: > https://repo.or.cz/git/debian.git/shortlog/refs/heads/debia

Git sources of git-core (for SID) out-of-date?

2025-01-26 Thread Michal Maruska
Hi, sid has version 1:2.47.2-0.1 https://packages.debian.org/source/sid/git mentions as git source: https://repo.or.cz/w/git/debian.git/ which indeed has the relevant branch: https://repo.or.cz/git/debian.git/shortlog/refs/heads/debian-sid but it's not pointing to anything related

Re: DokuWiki but in Markdown (preferable with git backend)

2025-01-22 Thread Nicolas George
Geert Stappers (12025-01-22): > Wiki: Present HTML to reader, as for 99% of Wikipedia.org visitors. > > I left out that "Wiki" also means "allow edit through webbrowser". > > "SSG" was suggested in response to the '> > > Any suggestions?' > > The '> > So webbrowser in one window' for "Preview",

Re: DokuWiki but in Markdown (preferable with git backend)

2025-01-22 Thread Geert Stappers
On Wed, Jan 22, 2025 at 08:00:26PM +0100, Nicolas George wrote: > Geert Stappers (12025-01-22): > > On Wed, Jan 22, 2025, Nicolas George wrote: > > > ... Wiki ... > > > ... markdown ... > > > ... git ... > > > Any suggestions? > > > >

Re: DokuWiki but in Markdown (preferable with git backend)

2025-01-22 Thread Nicolas George
Geert Stappers (12025-01-22): > SSG, Static Site Generators. Example given: Zola ( https://getzola.org ). > > For the more wiki experience `zola serve` > ( https://www.getzola.org/documentation/getting-started/cli-usage/ ) > So webbrowser in one window and your favorite text editor in another wind

Re: DokuWiki but in Markdown (preferable with git backend)

2025-01-22 Thread Geert Stappers
On Wed, Jan 22, 2025 at 05:43:44PM +0100, Nicolas George wrote: > Hi. > > Do you know if there is a wiki similar to DokuWiki but that uses > Markdown as a syntax, not a custom one nobody else uses, packaged in > Debian? Bonus points if it can use Git to manage its texts. > >

Re: Committing git working tree with other git repos

2024-03-14 Thread Tim Woodall
On Wed, 13 Mar 2024, Paul M Foster wrote: Folks: I have a /home/paulf/stow directory with contains subdirectories for each of the packages whose dotfiles I want to manage, like: /home/paulf/stow/alacritty In each subdirectory, I have all the config files for that packages, under git

Re: Committing git working tree with other git repos

2024-03-13 Thread Tim Woodall
files for that packages, under git management. This means that the directory will look like this: /home/paulf/stow/alacritty/.git /home/paulf/stow/alacritty/.config/alacritty/alacritty.yml This works well with stow (configs are now symlinks in $HOME). I'd like to copy all of this to a git re

Re: Committing git working tree with other git repos

2024-03-13 Thread Tim Woodall
On Wed, 13 Mar 2024, Paul M Foster wrote: Folks: I have a /home/paulf/stow directory with contains subdirectories for each of the packages whose dotfiles I want to manage, like: /home/paulf/stow/alacritty In each subdirectory, I have all the config files for that packages, under git

Re: Committing git working tree with other git repos

2024-03-13 Thread Paul M Foster
; > > /home/paulf/stow/alacritty > > > > In each subdirectory, I have all the config files for that packages, under > > git management. This means that the directory will look like this: > > > > /home/paulf/stow/alacritty/.git > > /home/paulf/stow/alacritty/.con

Re: Committing git working tree with other git repos

2024-03-13 Thread john doe
On 3/13/24 16:04, Paul M Foster wrote: Folks: I have a /home/paulf/stow directory with contains subdirectories for each of the packages whose dotfiles I want to manage, like: /home/paulf/stow/alacritty In each subdirectory, I have all the config files for that packages, under git management

Committing git working tree with other git repos

2024-03-13 Thread Paul M Foster
Folks: I have a /home/paulf/stow directory with contains subdirectories for each of the packages whose dotfiles I want to manage, like: /home/paulf/stow/alacritty In each subdirectory, I have all the config files for that packages, under git management. This means that the directory will look

Re: Git for backup storage

2023-10-07 Thread gene heskett
On 10/7/23 01:51, to...@tuxteam.de wrote: On Fri, Oct 06, 2023 at 01:44:34PM -0700, Mike Castle wrote: Something I played with recently was https://packages.debian.org/stable/vcs/git-filter-repo Yes, it does work. My typical use case is when someone has put a password in the repo you don&#

Re: Git for backup storage

2023-10-06 Thread tomas
On Fri, Oct 06, 2023 at 01:44:34PM -0700, Mike Castle wrote: > Something I played with recently was > https://packages.debian.org/stable/vcs/git-filter-repo Yes, it does work. My typical use case is when someone has put a password in the repo you don't even want to have in the histor

Re: Git for backup storage

2023-10-06 Thread Mike Castle
Something I played with recently was https://packages.debian.org/stable/vcs/git-filter-repo But you definitely want to run tests on real data before you decide that deleting old data saves your anything, particularly with respect to time. If git is so efficient at storing this kind of data, then

Re: Git for backup storage

2023-10-06 Thread Stefan Monnier
>> `git gc` does delete the old data (if it's not reachable any more). > And it is very expensive. My point exactly. It's fairly expensive indeed, but it's usually an operation that is not very time-sensitive: it can usually be delayed to a convenient time, and you can ru

Re: Git for backup storage

2023-10-06 Thread Nicolas George
Stefan Monnier (12023-10-06): > `git gc` does delete the old data (if it's not reachable any more). And it is very expensive. My point exactly. > BTW, if you want to (ab)use a Git repository to do backups, you should > definitely look at `bup`. Thanks, it might be exactly what I

Re: Git for backup storage

2023-10-06 Thread Stefan Monnier
> Have you tried? The very principle of Git makes it necessary, to remove > or update old data, to rewrite the whole subsequent history. > Furthermore, it is done by creating a new branch, the original data is > not actually deleted. `git gc` does delete the old data (if it's

Re: Git for backup storage

2023-10-06 Thread Nicolas George
john doe (12023-10-06): > Please elaborate on why Git is so bad at removing data from a single > repository? Have you tried? The very principle of Git makes it necessary, to remove or update old data, to rewrite the whole subsequent history. Furthermore, it is done by creating a new branc

Re: Git for backup storage

2023-10-06 Thread john doe
On 10/6/23 13:26, Nicolas George wrote: john doe (12023-10-06): I do not understand why you would want multiple repos, to me this looks like this would fit the bill for a Git branching workflow. Please elaborate. How do you work around the fact that Git is terrible at removing data with a

Re: Git for backup storage

2023-10-06 Thread Nicolas George
Max Nikulin (12023-10-06): > I have no idea if it is possible to do it in place, but "git clone" and "git > fetch" have the --depth option. So you can specify how many last commits you > would like to have in the cloned repository. Using "git rebase I know

Re: Git for backup storage

2023-10-06 Thread Nicolas George
john doe (12023-10-06): > I do not understand why you would want multiple repos, to me this looks > like this would fit the bill for a Git branching workflow. Please elaborate. How do you work around the fact that Git is terrible at removing data with a single repository? Regards, -- N

Re: Git for backup storage

2023-10-06 Thread john doe
On 10/6/23 11:14, Nicolas George wrote: Hi. There is a project I have that requires some scripting, but I am wondering if somebody already did something similar and there is a package that I can just apt-get install. The idea is to use Git to store backups of text files that change rather

Re: Git for backup storage

2023-10-06 Thread Max Nikulin
On 06/10/2023 16:14, Nicolas George wrote: Unfortunately, Git is very bad at removing old data I have no idea if it is possible to do it in place, but "git clone" and "git fetch" have the --depth option. So you can specify how many last commits you would like to have in t

Git for backup storage

2023-10-06 Thread Nicolas George
Hi. There is a project I have that requires some scripting, but I am wondering if somebody already did something similar and there is a package that I can just apt-get install. The idea is to use Git to store backups of text files that change rather rarely or not a lot, because Git is very

Re: Debian, Git server, Nginx, Fcgiwrap, and git push can not create remote object directory

2023-09-09 Thread Geert Stappers
On Sat, Sep 09, 2023 at 04:31:38PM -0400, David Mehler wrote: > Hello, > > I'm trying to set up a git server on Debian 12, served by Nginx via > https. I used this as a debian-specific starter though I have done > this in the past using a FreeBSD and Apache type setup: >

Re: Debian, Git server, Nginx, Fcgiwrap, and git push can not create remote object directory

2023-09-09 Thread David Mehler
tter wrote: > David Mehler wrote: >> I'm trying to set up a git server on Debian 12, served by Nginx via >> https. I used this as a debian-specific starter though I have done >> this in the past using a FreeBSD and Apache type setup: >> >> https://esc.sh

Debian, Git server, Nginx, Fcgiwrap, and git push can not create remote object directory

2023-09-09 Thread David Mehler
Hello, I'm trying to set up a git server on Debian 12, served by Nginx via https. I used this as a debian-specific starter though I have done this in the past using a FreeBSD and Apache type setup: https://esc.sh/blog/setting-up-a-git-http-server-with-nginx/ The client is a windows 10 c

Re: git setup

2023-08-26 Thread Tixy
On Fri, 2023-08-25 at 22:36 +, Russell L. Harris wrote: > If pushing from PRODUCTION is more reliable or less trouble-prone than > pulling from BACKUP, kindly explain to me, and I shall change. Another consideration is that to pull from PRODUCTION requires it to be running a service (e.g. ssh)

Re: git setup

2023-08-26 Thread tomas
On Sat, Aug 26, 2023 at 08:10:20AM -0300, Eduardo M KALINOWSKI wrote: [...] > The reliability should be the same, but you cannot push to a non-bare > repository. At least not in the standard configuration, but git being git > I'm sure there's a way to override that. Ac

Re: git setup

2023-08-26 Thread Eduardo M KALINOWSKI
nd I shall change. The reliability should be the same, but you cannot push to a non-bare repository. At least not in the standard configuration, but git being git I'm sure there's a way to override that. -- Parents often talk about the younger generation as if they didn't ha

Re: git setup

2023-08-25 Thread tomas
s context > > > > > > You can make a repo bare by editing it's config file (.git/config) to > > > have 'bare = true' instead of 'bare = false' under the '[core]' > > > > > > > Generaly, the '.git' extension s

Re: git setup

2023-08-25 Thread Greg Wooledge
that has been described is perfectly suited to this scenario. Arrange it so that when you run "git push" in your working repository, it sends your commits to the central repository. (There may be a prompt for your password or your passphrase, depending on how you've configur

Re: git setup

2023-08-25 Thread Russell L. Harris
On Fri, Aug 25, 2023 at 09:54:02AM +0200, Loris Bennett wrote: Does a bare remote to which you simply push not already provide you with an adequate backup? One you have made a number of commits, you can just push them to the remote. I am old and my fingers sometimes strike the wrong keys. (In

Re: git setup

2023-08-25 Thread Tixy
On Fri, 2023-08-25 at 19:47 +0200, john doe wrote: > On 8/25/23 13:44, Tixy wrote: > > On Fri, 2023-08-25 at 10:47 +0200, to...@tuxteam.de wrote: > > > Yes, I think a bare remote is the way to go in this context > > > > You can make a repo bare by editing it&

Re: git setup

2023-08-25 Thread john doe
On 8/25/23 13:44, Tixy wrote: On Fri, 2023-08-25 at 10:47 +0200, to...@tuxteam.de wrote: Yes, I think a bare remote is the way to go in this context You can make a repo bare by editing it's config file (.git/config) to have 'bare = true' instead of 'bare = fal

Re: git setup

2023-08-25 Thread Tixy
On Fri, 2023-08-25 at 10:47 +0200, to...@tuxteam.de wrote: > Yes, I think a bare remote is the way to go in this context You can make a repo bare by editing it's config file (.git/config) to have 'bare = true' instead of 'bare = false' under the '[core]' sec

Re: git setup

2023-08-25 Thread john doe
On 8/25/23 09:04, Russell L. Harris wrote: On Fri, Aug 25, 2023 at 07:24:59AM +0100, Tixy wrote: On Thu, 2023-08-24 at 22:24 +, Russell L. Harris wrote: I'm also a bit confused about doing it this way. The usual workflow with git is to 'push' to the remote repository, which

Re: git setup

2023-08-25 Thread tomas
On Fri, Aug 25, 2023 at 09:54:02AM +0200, Loris Bennett wrote: [...] > Does a bare remote to which you simply push not already provide you with > an adequate backup? One you have made a number of commits, you can just > push them to the remote. Yes, I think a bare remote is the way to go in t

Re: git setup

2023-08-25 Thread Loris Bennett
"Russell L. Harris" writes: > On Fri, Aug 25, 2023 at 07:24:59AM +0100, Tixy wrote: >>On Thu, 2023-08-24 at 22:24 +, Russell L. Harris wrote: >>> #!/bin/bash >>> # post-commit >>> # 2023.08.24 2200gmt >>> >>> ssh backup "g

Re: git setup

2023-08-25 Thread Russell L. Harris
On Fri, Aug 25, 2023 at 07:24:59AM +0100, Tixy wrote: On Thu, 2023-08-24 at 22:24 +, Russell L. Harris wrote: #!/bin/bash # post-commit # 2023.08.24 2200gmt ssh backup "git pull" exit 0 You could omit the 'exit 0' so it returns the error code from the ssh command,

Re: git setup

2023-08-24 Thread Tixy
On Thu, 2023-08-24 at 22:24 +, Russell L. Harris wrote: > #!/bin/bash > # post-commit > # 2023.08.24 2200gmt > > ssh backup "git pull" > exit 0 > You could omit the 'exit 0' so it returns the error code from the ssh command, that way you'll g

Re: git setup

2023-08-24 Thread Russell L. Harris
On Tue, Aug 22, 2023 at 12:59:18AM -0400, Karl Vogel wrote: me% cat try #!/bin/sh export PATH=/usr/local/bin:/bin:/usr/bin ssh -q -c aes128-...@openssh.com -i $HOME/.ssh/bkup_ed25519 \ bkup "logger -t autopull git pull whatever" exit 0 I am gratef

Re: syncthing, rsync for git; was: git setup

2023-08-22 Thread Max Nikulin
poses no fuss at all. Almost every version control system (besides legacy ones, e.g. RCS) is designed to combine changes from multiple working copies evolving in parallel. Of course, git facilities allows to synchronize multiple repositories with minimal risk to loose changes committed to any

Re: syncthing, rsync for git; was: git setup

2023-08-22 Thread Celejar
On Tue, 22 Aug 2023 19:27:57 + Michael Kjörling <2695bd53d...@ewoof.net> wrote: > On 22 Aug 2023 14:33 -0400, from cele...@gmail.com (Celejar): > >> Git tends to be very rsync-friendly. > > > > I do something similar - I use syncthing to automatically keep the

Re: syncthing, rsync for git; was: git setup

2023-08-22 Thread Michael Kjörling
On 22 Aug 2023 14:33 -0400, from cele...@gmail.com (Celejar): >> Git tends to be very rsync-friendly. > > I do something similar - I use syncthing to automatically keep the git > repositories on two of my machines in sync. rsync may be better, but > syncthing has more or less w

Re: git setup

2023-08-22 Thread Celejar
On Tue, 22 Aug 2023 16:31:58 +0200 wrote: > On Tue, Aug 22, 2023 at 09:16:47AM -0500, John Hasler wrote: > > Christoph writes: > > > I have almost the same setup and use local git repositories. Instead > > > of syncing them by the git tools I use rsync to update th

Re: git setup

2023-08-22 Thread Charles Curley
o, which the OP would call BACKUP, is on a headerless machine, so I used gitolite there, and git administration is all over ssh. That gets backed up daily using amanda. I have two laptops, a desktop and a plethora of other machines. Each of those has such repos as are appropriate to that machine. A

Re: git setup

2023-08-22 Thread Ceppo
On Tue, Aug 22, 2023 at 03:00:33AM +, Russell L. Harris wrote: > My needs are simple. I need two git repositories. > > The first is my work space, into which periodically I commit the > article on which I am working. > > The second repository is my backup; it resides

Re: git setup

2023-08-22 Thread Sven Joachim
On 2023-08-22 03:00 +, Russell L. Harris wrote: > After much searching and reading, I have not discovered how to set up > a pair of git repositories to work together. > > I write articles for publication. I typically spend anywhere from > several hours to many days on each

Re: git setup

2023-08-22 Thread tomas
On Tue, Aug 22, 2023 at 09:16:47AM -0500, John Hasler wrote: > Christoph writes: > > I have almost the same setup and use local git repositories. Instead > > of syncing them by the git tools I use rsync to update the backup from > > time to time. This is a dumb method but i

Re: git setup

2023-08-22 Thread John Hasler
Christoph writes: > I have almost the same setup and use local git repositories. Instead > of syncing them by the git tools I use rsync to update the backup from > time to time. This is a dumb method but it works. This is what I do as well. -- John Hasler j...@sugarbit.com Elmwood, WI USA

Re: git setup

2023-08-22 Thread john doe
On 8/22/23 05:00, Russell L. Harris wrote: After much searching and reading, I have not discovered how to set up a pair of git repositories to work together. This makes no sense, that is what Git is for! :) In the past, I have found git to be a very good solution.  But now I am moving to a

Re: git setup

2023-08-21 Thread Christoph Brinkhaus
Am Tue, Aug 22, 2023 at 03:00:33AM + schrieb Russell L. Harris: Hello Russel, I cannot answer your question directly but show what I am doing now. > After much searching and reading, I have not discovered how to set up > a pair of git repositories to work together. > > I write

Re: git setup

2023-08-21 Thread Karl Vogel
I'd set up a post-commit hook on the production system. Have it SSH to your backup system and do a pull automatically whenever you commit a change. I made an example project to try it: me% mkdir example me% cd example me% git init Test file: me% date > testing me% gi

git setup

2023-08-21 Thread Russell L. Harris
After much searching and reading, I have not discovered how to set up a pair of git repositories to work together. I write articles for publication. I typically spend anywhere from several hours to many days on each article. It is frustrating to work for an hour or two on a paragraph or a page

Quick ANN to all DataLad and git-annex users

2023-06-29 Thread Yaroslav Halchenko
Dear DataLad and git-annex users, We started planning a first meeting for everyone interested in DataLad and git-annex in the first half of 2024! If you find that as exhilarating as we do, head over to https://t.co/7RjLHyWtnl and help us shape the event. Cheers, -- Yaroslav O. Halchenko Center

Re: GIT problem

2023-05-11 Thread tomas
On Thu, May 11, 2023 at 07:05:21PM -0400, Stefan Monnier wrote: > > git remote remove origin > > # this re-adds it > > git remote add origin > > Better go with > > git remote set-url origin Right :) Cheers -- t signature.asc Description: PGP signature

Re: GIT problem

2023-05-11 Thread Stefan Monnier
> git remote remove origin > # this re-adds it > git remote add origin Better go with git remote set-url origin -- Stefan

Re: GIT problem

2023-05-10 Thread john doe
On 5/10/23 05:47, William Torrez Corea wrote: Command: git push master origin I want upload my change to branch MAIN but when i want upload my change i get the following error: remote: Support for password authentication was removed on August 13, 2021. remote: Please see https

Re: GIT problem

2023-05-10 Thread Vincent Lefevre
On 2023-05-10 05:49:19 +0100, Tim Woodall wrote: > On Tue, 9 May 2023, William Torrez Corea wrote: > > > Command: > > > > git push master origin > > > > > shouldn't that be git push origin master? Or even origin main? Or in general, simply

Re: GIT problem

2023-05-10 Thread Henning Follmann
On Tue, May 09, 2023 at 09:47:45PM -0600, William Torrez Corea wrote: > Command: > > git push master origin > > > > I want upload my change to branch MAIN but when i want upload my change i > get the following error: > > remote: Support for password authentication

Re: GIT problem

2023-05-09 Thread tomas
On Tue, May 09, 2023 at 09:47:45PM -0600, William Torrez Corea wrote: > Command: > > git push master origin > > > > I want upload my change to branch MAIN but when i want upload my change i > get the following error: > > remote: Support for password authentication

Re: GIT problem

2023-05-09 Thread Tim Woodall
On Tue, 9 May 2023, William Torrez Corea wrote: Command: git push master origin shouldn't that be git push origin master? Or even origin main? I want upload my change to branch MAIN but when i want upload my change i get the following error: remote: Support for password authentic

GIT problem

2023-05-09 Thread William Torrez Corea
Command: git push master origin > I want upload my change to branch MAIN but when i want upload my change i get the following error: remote: Support for password authentication was removed on August 13, 2021. > remote: Please see > https://docs.github.com/en/get-started/getting-started

Re: OT: Re: Git Branching

2023-03-05 Thread tomas
On Sun, Mar 05, 2023 at 09:05:01AM +0100, john doe wrote: > On 3/5/23 04:59, William Torrez Corea wrote: > > I am working with remotes, when i want push to the remote with this command > > What CMD? > > > appear the following error: > > > > *git push m

Re: Git Branching

2023-03-05 Thread Geert Stappers
On Sat, Mar 04, 2023 at 11:13:04PM -0500, Larry Martell wrote: > On Sat, Mar 4, 2023 at 11:00 PM William Torrez Corea wrote: > > > I am working with remotes, when i want push to the remote with this > > command appear the following error: > > > > *git push main mast

OT: Re: Git Branching

2023-03-05 Thread john doe
On 3/5/23 04:59, William Torrez Corea wrote: I am working with remotes, when i want push to the remote with this command What CMD? appear the following error: *git push main master* This error looks to indicate that you are pushing to main and master branches. fatal: 'main'

Re: Git Branching

2023-03-04 Thread tomas
On Sat, Mar 04, 2023 at 09:59:29PM -0600, William Torrez Corea wrote: > I am working with remotes, when i want push to the remote with this command > appear the following error: > > *git push main master* > > fatal: 'main' does not appear to be a git repository &g

Re: Git Branching

2023-03-04 Thread Larry Martell
On Sat, Mar 4, 2023 at 11:00 PM William Torrez Corea wrote: > I am working with remotes, when i want push to the remote with this > command appear the following error: > > *git push main master* > > fatal: 'main' does not appear to be a git repository >>

Git Branching

2023-03-04 Thread William Torrez Corea
I am working with remotes, when i want push to the remote with this command appear the following error: *git push main master* fatal: 'main' does not appear to be a git repository > fatal: Could not read from remote repository. > > Please make sure you have the correct acce

Re: Vulnerable git in bullseye - what's the process?

2023-01-29 Thread David
On Sat, 28 Jan 2023 at 03:56, Tixy wrote: > On Fri, 2023-01-27 at 11:28 +, Brad Rogers wrote: > > On Fri, 27 Jan 2023 11:36:12 +0100 "Sijmen J. Mulder" > > wrote: > > > I was surprised to find that the recent git vulnerability hasn't yet > &g

Re: Vulnerable git in bullseye - what's the process?

2023-01-27 Thread Brad Rogers
On Fri, 27 Jan 2023 16:56:31 + Tixy wrote: Hello Tixy, >Does it? It links to a bug which says it's been fixed in sid. And the To be fair, the page lists more than just that; It lists the status for everything from Buster to Sid. Add that to the info given by Greg Wooledge (thank you Greg)

Re: Vulnerable git in bullseye - what's the process?

2023-01-27 Thread Greg Wooledge
On Fri, Jan 27, 2023 at 04:56:31PM +, Tixy wrote: > On Fri, 2023-01-27 at 11:28 +, Brad Rogers wrote: > > The security-tracker CVE page you cited has links to all the > > information you requested. > > Does it? It links to a bug which says it's been fixed in sid. And the > PTS shows it was

Re: Vulnerable git in bullseye - what's the process?

2023-01-27 Thread Tixy
On Fri, 2023-01-27 at 11:28 +, Brad Rogers wrote: > On Fri, 27 Jan 2023 11:36:12 +0100 > "Sijmen J. Mulder" wrote: > > Hello Sijmen, > > The security-tracker CVE page you cited has links to all the > information you requested. > Does it? It links to a bug which says it's been fixed in sid.

Re: Vulnerable git in bullseye - what's the process?

2023-01-27 Thread Brad Rogers
On Fri, 27 Jan 2023 11:36:12 +0100 "Sijmen J. Mulder" wrote: Hello Sijmen, The security-tracker CVE page you cited has links to all the information you requested. -- Regards _ "Valid sig separator is {dash}{dash}{space}" / ) "The blindingly obvious is never immediately ap

Re: Vulnerable git in bullseye - what's the process?

2023-01-27 Thread David
On Fri, 27 Jan 2023 at 21:36, Sijmen J. Mulder wrote: > > Hi all, > > I was surprised to find that the recent git vulnerability hasn't yet > been addressed in Bullseye: Hi. More info here: https://www.debian.org/security/faq and here: https://security-tracker.debian.org/

Vulnerable git in bullseye - what's the process?

2023-01-27 Thread Sijmen J. Mulder
Hi all, I was surprised to find that the recent git vulnerability hasn't yet been addressed in Bullseye: https://security-tracker.debian.org/tracker/CVE-2022-41903 My question isn't about the situation of this package per se but about the process. I found this diagram: https://wiki.

Re: OT git question

2022-06-07 Thread 황병희
Hellow Ash, Ash Joubert writes: > On 07/06/2022 20:01, 황병희 wrote: >> ===> Correction: git pull origin karma > > This means fetch commits from the "karma" branch/tag on repository > "origin" and incorporate them into the current local branch with a &g

Re: OT git question

2022-06-07 Thread tomas
On Wed, Jun 08, 2022 at 04:38:22PM +1200, Ash Joubert wrote: > On 08/06/2022 16:25, to...@tuxteam.de wrote: > > Just... what does "Pro Git" mean? > > Pro Git is the name of a well-known book on git that is also available free > in HTML and PDF formats [...] Oh, I se

Re: OT git question

2022-06-07 Thread Ash Joubert
On 08/06/2022 16:25, to...@tuxteam.de wrote: Just... what does "Pro Git" mean? Pro Git is the name of a well-known book on git that is also available free in HTML and PDF formats. In addition to the basics that can be found in the git man pages, it contains best-practices and b

Re: OT git question

2022-06-07 Thread tomas
On Wed, Jun 08, 2022 at 10:31:03AM +1200, Ash Joubert wrote: > On 07/06/2022 20:01, 황병희 wrote: > > ===> Correction: git pull origin karma > > This means fetch commits from the "karma" branch/tag on repository "origin" > and incorporate them into the cu

Re: OT git question

2022-06-07 Thread Ash Joubert
On 07/06/2022 20:01, 황병희 wrote: ===> Correction: git pull origin karma This means fetch commits from the "karma" branch/tag on repository "origin" and incorporate them into the current local branch with a merge or rebase. See the man page for git-pull for a detailed

Re: OT git question

2022-06-07 Thread 황병희
황병희 writes: > ... > - git pull -b karma Ack! my mistake!!! I am very sorry!!! ===> Correction: git pull origin karma Sorry again john and IL! Sincerely, Linux fan Byung-Hee -- ^고맙습니다 _地平天成_ 감사합니다_^))//

Re: OT git question

2022-06-07 Thread IL Ka
> > According to (1), that would be the ''-b, -w, --ignore-space-at-eol, and > --ignore-cr-at-eol' option and the 'repository'. > > This is a "git diff" option, not "git pull" option AFAIK

Re: OT git question

2022-06-07 Thread john doe
On 6/7/2022 6:26 AM, 황병희 wrote: Hellow Debian, For days, i have been working with git. And today i have very simple question. Because it is very confused... I need somebody's clearing. What is different both commands: - git pull - git pull -b karma According to (1), that would be the

Re: OT git question

2022-06-06 Thread IL Ka
Hi > - git pull > Fetch data from remote repository and merge local branch or rebase it on top of new commits. > - git pull -b karma > I do know what "-b" is. Documentation also doesn't: https://git-scm.com/docs/git-pull $ git pull -b asd error: unknown switch `b&

OT git question

2022-06-06 Thread 황병희
Hellow Debian, For days, i have been working with git. And today i have very simple question. Because it is very confused... I need somebody's clearing. What is different both commands: - git pull - git pull -b karma Thanks in advance! Sincerely, Linux fan Byung-Hee -- ^고맙습니다 _地平天成_ 감사합니다_^))//

Re: git FTBFS ?

2021-11-26 Thread Nicholas Geovanis
On Fri, Nov 26, 2021, 7:57 AM Harald Dunkel wrote: > Hi folks, > > trying to build git 2.34.0-1 for bullseye I get 2 segfaults (see #991214). > Apparently they pop up during the built-in tests, so I wonder if this is a > FTBFS? If this is nothing to worry about, how comes that

git FTBFS ?

2021-11-26 Thread Harald Dunkel
Hi folks, trying to build git 2.34.0-1 for bullseye I get 2 segfaults (see #991214). Apparently they pop up during the built-in tests, so I wonder if this is a FTBFS? If this is nothing to worry about, how comes that these segfaults are not caught like the others? Regards Harri

Re: using git

2020-01-28 Thread Andrei POPESCU
suggestions. As as start try to develop the habit to always commit your changes (no matter how small) and write commit messages that will make sense to you months (if not years) later. In case you want a "clean up" your history it's possible to "squash" and/or re

Re: using git

2020-01-28 Thread john doe
On 1/28/2020 4:50 PM, mick crane wrote: > On 2020-01-28 14:13, Nate Bargmann wrote: >> * On 2020 28 Jan 07:30 -0600, mick crane wrote: >>> hello, >>> I want to install Git locally, I've cloned something before but I >>> don't know >>> much abo

Re: using git

2020-01-28 Thread mick crane
On 2020-01-28 14:13, Nate Bargmann wrote: * On 2020 28 Jan 07:30 -0600, mick crane wrote: hello, I want to install Git locally, I've cloned something before but I don't know much about it. Before I dive into the man pages could I ask if I need the git-daemon-run for the server b

Re: using git

2020-01-28 Thread tomas
n > > directories on the same machine which doesn't always seem to work if > > go back to it after several months. I thought Git on a separate > > machine might help to keep track of things. > > You might look into gitolite, which is in the package gitolite3. > http:

Re: using git

2020-01-28 Thread Charles Curley
ack to it after several months. I thought Git on a separate > machine might help to keep track of things. You might look into gitolite, which is in the package gitolite3. http://charlescurley.com/blog/tag/gitolite.html -- Does anybody read signatures any more? https://charlescurley.com https://charlescurley.com/blog/

Re: using git

2020-01-28 Thread tomas
On Tue, Jan 28, 2020 at 02:14:05PM +, mick crane wrote: > On 2020-01-28 13:47, to...@tuxteam.de wrote: > >On Tue, Jan 28, 2020 at 01:29:10PM +, mick crane wrote: > >>hello, > >>I want to install Git locally, I've cloned something before but I > >>do

Re: using git

2020-01-28 Thread Greg Wooledge
On Tue, Jan 28, 2020 at 08:13:39AM -0600, Nate Bargmann wrote: > Have you taken a look at this book: https://git-scm.com/book/en/v2 > > I still refer to it when doing something I don't do often enough to > recall the exact syntax. +1. I have the "basic branchin

Re: using git

2020-01-28 Thread mick crane
On 2020-01-28 13:47, to...@tuxteam.de wrote: On Tue, Jan 28, 2020 at 01:29:10PM +, mick crane wrote: hello, I want to install Git locally, I've cloned something before but I don't know much about it. Before I dive into the man pages could I ask if I need the git-daemon-run for

Re: using git

2020-01-28 Thread Nate Bargmann
* On 2020 28 Jan 07:30 -0600, mick crane wrote: > hello, > I want to install Git locally, I've cloned something before but I don't know > much about it. > Before I dive into the man pages could I ask if I need the git-daemon-run > for the server bit? Have you taken a

Re: using git

2020-01-28 Thread tomas
On Tue, Jan 28, 2020 at 01:29:10PM +, mick crane wrote: > hello, > I want to install Git locally, I've cloned something before but I > don't know much about it. > Before I dive into the man pages could I ask if I need the > git-daemon-run for the server bit? Not neces

  1   2   3   4   >