[git-users] Git default behaviour regarding submodules

2022-12-29 Thread Daniel Torrescusa Rubio
Hi! I wonder what if there is any reason for not making the submodule management much more easier for the user. I mean, for example. if there is some submodule on a git repository, the default behaviour should be to make it available when you clone the repository, and update it when is

[git-users] Re: "\ No newline at end of file" displayed for symlinks

2022-10-12 Thread 'Daniel Gutson' via Git for human beings
Hi, On Wednesday, October 12, 2022 at 5:54:58 PM UTC-3 philip...@iee.email wrote: > https://stackoverflow.com/a/954575/717355 may be a suitable answer that > matches what you are seeing. > this actually is not a question, but a potential bug report. I think git should not complain about the

[git-users] Re: Meta: Gmane newsgroup bi-directionality

2021-09-14 Thread Daniel Fleischer
hreads. Also on > https://public-inbox.org/git/xmqqblrp...@gitster-ct.c.googlers.com/ > <https://public-inbox.org/git/xmqqblrpfky5@gitster-ct.c.googlers.com/> > > Hope we are talking about the same list... > > Philip > > On Tuesday, September 14, 2021 at 10:52:56 AM UTC+1

[git-users] Meta: Gmane newsgroup bi-directionality

2021-09-14 Thread Daniel Fleischer
Hi, can you make the newsgroup "gmane.comp.version-control.git.user" bi-directional so people can participate without using a browser or email-subscribing? Thank you, Daniel Fleischer -- You received this message because you are subscribed to the Google Groups "Git for huma

Re: [git-users] is there a way to verify a commit or tag name without cloning a repo?

2019-11-08 Thread Daniel Fanjul
It includes all refs: heads, tags, remote tracking heads, and non standard refs if present. It does not include all hashes of all commits present in the repository. On Fri, Nov 8, 2019 at 3:43 PM mash wrote: > My goal is to build a kernel from a repository and a commit/tag provided > by a user,

Re: [git-users] How do I avoid typing “git” at the begining of every Git command?

2019-06-14 Thread Daniel Fanjul
/daniel-fanjul-alcuten/dotfiles/blob/master/.bashrc#L259, from L259 to L319, including bash completion for those bash aliases. On Fri, Jun 14, 2019 at 9:34 AM Michael wrote: > > > Hi Michael, > > > > I was probably being over zealous in my differentiation. > &

[git-users] get packs of a given object sha1

2019-01-21 Thread Daniel Fanjul
Hi all, Is there a way to know the pack or packs that contain a given object sha1? Thanks, Daniel. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an ema

[git-users] loose objects still after repack and prune

2019-01-21 Thread Daniel Fanjul
Hi all, After 'git repack -d' and 'git prune --expire now' I find there are still 1172 loose objects. I expected none. What am I missing? Thanks, Daniel. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from

Re: [git-users] git checkout file with custom mtime

2019-01-09 Thread Daniel Fanjul
The mtime of the files in my working copy change when I amend or rebase or checkout different branches or in general when I use git commands. I carefully store the mtime when these files are generated or overwritten and restore it when it is going to be read. The tool I use is

Re: [git-users] git checkout file with custom mtime

2019-01-06 Thread Daniel Fanjul
es. A command like 'git checkout --mtime $mymtime HEAD -- $myfile' in a clean working copy would be able to store the mtime in the index without touching the contents of the file. We can use GIT_COMMITTER_DATE for 'git commit', another environment variable could make sense here too. On Su

Re: [git-users] git checkout file with custom mtime

2019-01-05 Thread Daniel Fanjul
I'm on Ubuntu. I do not use LFS. I track mods and saved games of Skyrim with git, TESV.exe sorts the saved games only by their mtime. I know it is not the most usual use case for git. I agree with that viewpoint and I like the way git works right now, I do not want to change that. Checking out

[git-users] git checkout file with custom mtime

2019-01-05 Thread Daniel Fanjul
. This would solve my problem. Do you know a way to do this? Do you know any other way to handle this properly? Thanks in advance, and happy new year, Daniel. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this grou

Re: [git-users] bug with --max-count option in "git rev-list" command

2018-09-13 Thread Daniel Burtman
Thank you! On Thursday, September 13, 2018 at 12:45:22 PM UTC-4, Konstantin Khomoutov wrote: > > On Thu, Sep 13, 2018 at 09:13:57AM -0700, Daniel Burtman wrote: > > Hi! > > > I’m running git rev-list command and getting usage message instead of > > normal output:

[git-users] Re: bug with --max-count option in "git rev-list" command

2018-09-13 Thread Daniel Burtman
Thank you! That was indeed the missing part. Appreciate your responses. On Thursday, September 13, 2018 at 12:13:57 PM UTC-4, Daniel Burtman wrote: > > Hi there > > > > I’m running git rev-list command and getting usage message instead of > normal output: > > >

[git-users] bug with --max-count option in "git rev-list" command

2018-09-13 Thread Daniel Burtman
Hi there I’m running git rev-list command and getting usage message instead of normal output: git rev-list --max-count=3 usage: git rev-list [OPTION] ... [ -- paths... ] limiting output: --max-count= --max-age= --min-age= --sparse --no-merges

[git-users] Merge driver issues

2017-02-22 Thread Daniel Ferreira Maida
I'm trying to setup a merge driver in my ubuntu, but everytime I call "git merge-file left.java base.java right.java" nothing happens. my $HOME/.gitconfig file [core] attributesfile = ~/.gitattributes [merge "s3m"] name = custom semistructured merge driver for java files driver =

Re: [git-users] Git source code debugging

2017-02-22 Thread Daniel Ferreira Maida
I will try to do this Philip! Thanks Em segunda-feira, 20 de fevereiro de 2017 19:04:33 UTC-3, Philip Oakley escreveu: > > Daniel, > > Is this (git using internal diff) also true if you have set a diff-driver > as well? > > Philip > > - Original Mess

[git-users] Git source code debugging

2017-02-20 Thread Daniel Ferreira Maida
Hello! This is my first post here.n I need to do some changes in the git source code for a scientific research project. To be more precise, I need to change the behavior of git merge driver, conflict detection, etc. In order to do that, I need to debug the git source code to have a better

[git-users] Help to understand git merge conflicts

2016-11-23 Thread Daniel PRESA
Hi everyone, So here is the thing, i just don't get the git merge conflict and how to resolve them, especially when i already tried to resolve the conflict and finished to have half my changes merged, the other all ignored and files someone have modified in me personnar repository i dont even

[git-users] How do you git archive a branch using gzip with highest compression level?

2016-05-03 Thread Daniel Harris
I'm trying to git archive a branch using gzip with the highest level compression (9) but it seems to not compress at that level. Here is my command: git -C /home/user/example.com/ archive --format tar -o /home/user/ site_backups/develop-`date +%Y-%m-%dT%H%M`.tar develop | gzip -9 It creates

[git-users] Re: Show git logs of a range of commits

2015-12-30 Thread Daniel Doron
*git log XXX^..YYY --oneline* On Friday, December 18, 2015 at 1:52:30 PM UTC+2, Ahmed Bessifi wrote: > > Hi all, > > I want to list logs of a range of commits (see print_screen_1). I've tried > the *"git log XXX..YYY --oneline"* command but in the output, the infos > related to XXX commit

Re: [git-users] contaminated git log

2015-11-17 Thread Daniel Doron
Thanks Konstantin, that is very thorough information. I will find the time and formulate a request to Git developers. Daniel. On Tuesday, November 17, 2015 at 3:59:36 PM UTC+2, Konstantin Khomoutov wrote: > > On Tue, 17 Nov 2015 00:06:19 -0800 (PST) > Daniel Doron <danielm.

Re: [git-users] contaminated git log

2015-11-17 Thread Daniel Doron
Actually it did help! I forgot to delete one TAG Can you explain the rational behind this? Daniel. On Monday, November 16, 2015 at 6:28:37 PM UTC+2, Daniel Doron wrote: > > tried deleting them...changes nothing (except for the tags being gone) > > On Monday, November 16, 2015 a

Re: [git-users] contaminated git log

2015-11-16 Thread Daniel Doron
tried deleting them...changes nothing (except for the tags being gone) On Monday, November 16, 2015 at 4:13:14 PM UTC+2, Konstantin Khomoutov wrote: > > On Mon, 16 Nov 2015 05:52:22 -0800 (PST) > Daniel Doron <danielm...@gmail.com > wrote: > > > see screen capture

[git-users] contaminated git log

2015-11-16 Thread Daniel Doron
help...any idea why it is like that and how I can clean it up? Thanks Daniel. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr

Re: [git-users] contaminated git log

2015-11-16 Thread Daniel Doron
it log > output? > > 2015-11-16 14:17 GMT+01:00 Daniel Doron <danielm...@gmail.com > >: > >> I have a local repository to which I added a remote so I can cherry pick >> some commits. >> now, I removed the remote and any related branches, as I no longer

Re: [git-users] contaminated git log

2015-11-16 Thread Daniel Doron
yep. tried that On Monday, November 16, 2015 at 3:35:14 PM UTC+2, Konstantin Khomoutov wrote: > > On Mon, 16 Nov 2015 05:17:11 -0800 (PST) > Daniel Doron <danielm...@gmail.com > wrote: > > > I have a local repository to which I added a remote so I can cherr

Re: [git-users] contaminated git log

2015-11-16 Thread Daniel Doron
1fc12db96f7fff9de47ff1918eab0838e4708236 author Daniel Doron <dani...@xxx.com> 1447591625 +0200 committer Daniel Doron <dani...@xxx.com> 1447591625 +0200 initial module commit - sorry about the screen shot, I can attach the log with obfuscated text. $ git lol --format="%h "

[git-users] Re: I'm stuck

2015-08-06 Thread Daniel Cortes
I just wanted to thank Luis Pereira, it was a pain trying to figure out how to save in VIM, CTRL+S was definitely not it, your suggestion worked. thank you! On Wednesday, July 9, 2008 at 12:03:11 AM UTC-4, Ruby Freak wrote: I am (attempting) to follow the peepcode get tutorial, which has me

[git-users] GIT in combination with Sparx Systems Enterprise Architect.

2015-04-06 Thread Daniel Maton
Dear sir/madam, I am working for a dutch company and we want to use GIT in combination with a visual modeling and design tool, that is Sparx Systems Enterprise Architect. This tool usually works with Subversion (SVN) and supports also SCC interface to any SCC compatible version control

Re: [git-users] Hook for controlling owner, group, and permissions?

2014-12-15 Thread Daniel Fanjul
This is a possible workaround: cat ./.git/hooks/post-checkout -EOF #!/bin/bash chmod files true EOF cat ./.git/hooks/post-rewrite -EOF #!/bin/bash cat /dev/null chmod files true EOF chmod u+x ./.git/hooks/post-{checkout,rewrite} -- Daniel Fanjul Alcutén https://github.com

Re: [git-users] Identify added/changed lines since a specific commit

2014-09-09 Thread Daniel Fanjul
-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout. -- Daniel Fanjul Alcutén https://github.com/daniel-fanjul-alcuten -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from

[git-users] git branch does not rev-parse its arguments

2014-07-16 Thread Daniel Fanjul
think git should expand the branchname for the cases #D and #E. It it makes sense, could you please open an issue? git version 2.0.1 in Ubuntu. -- Daniel Fanjul Alcutén https://github.com/daniel-fanjul-alcuten -- You received this message because you are subscribed to the Google Groups Git

[git-users] Re: git subtree pull

2014-04-29 Thread Daniel Gómez Rico
The same thing happens to me. Em quarta-feira, 28 de agosto de 2013 15h26min27s UTC-3, Jon Mullen escreveu: I have a repository named bar. I added a sub repository using the following subtree command. git subtree add --squash -P foodir/ foo master I then pushed these changes to bar. A

Re: [git-users] effect of git checkout master on master branch

2014-02-28 Thread Daniel Hunsaker
you specify, which in this case is the commit at the tip of master. If you haven't made any changes since the last checkout, it will do nothing at all. - Daniel Hunsaker Owner / Developer Lei's Genesis Experiment: Code For The Future! On Fri, Feb 28, 2014 at 1:27 AM, dexter ietf dexter.i

Re: [git-users] Re: Installing git locally vs. using an online repo service

2014-02-22 Thread Daniel Hunsaker
to access the remote server to keep track of your progress. If that's important to you, a local install will only help. - Daniel Hunsaker Owner / Developer Lei's Genesis Experiment: Code For The Future! On Fri, Feb 21, 2014 at 8:15 AM, li...@nxgnsol.com wrote: Yes, I do use Dropbox and I have been

[git-users] push via VPN fails

2013-12-15 Thread Daniel Ellison
I have a windows box on my home LAN that I use as a file server and the origin, with several Windows clients. I use eGit for Eclipse and everything works fine. One of my clients is a laptop I take on the road and can connect back in via OpenVPN. On the road, pulls work fine, but when I try

[git-users] Re:

2013-11-25 Thread Daniel Hunsaker
You'll have to unsubscribe from the group to do that. Go to https://groups.google.com/forum/#!topic/git-users, log in with the email address you get this message at if you're not logged in already, click the person-and-gear button in the upper right, and choose Leave this group from the menu.

[git-users] @{upstream} for remote.pushdefault

2013-08-05 Thread Daniel Fanjul
--symbolic-full-name --abbrev-ref HEAD@{upstream}` -- Daniel Fanjul Alcutén Tools Engineer @Spotify AB https://github.com/daniel-fanjul-alcuten -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe from this group and stop receiving

Re: [git-users] Re: Free Git Book

2013-02-24 Thread Daniel Juyung Seo
Hello, Ryan. This is great :) The explanation is quite easy to follow and it explains the concept of git correctly. Can I translate this into Korean language and open that to public? If you are ok, I want to translate this into Korean and share it on Internet. Thanks in advance. Daniel Juyung

Re: [git-users] Re: Free Git Book

2013-02-24 Thread Daniel Juyung Seo
Hi Ryan Hodson, thanks for the reply. Sure I can wait. There is no rush on it. It's great to hear that you have plans for an official translation. I can start it locally :) Thanks. Daniel Juyung Seo (SeoZ) On Monday, February 25, 2013 1:11:21 AM UTC+9, Ryan Hodson wrote: Hi Daniel, Thanks

[git-users] Re: git - svn migration question

2012-12-20 Thread Daniel Pomerantz
AM UTC-6, Thomas Ferris Nicolaisen wrote: On Thursday, December 20, 2012 5:35:56 AM UTC+1, Daniel Pomerantz wrote: I have what is probably a silly question. They are not silly :) Short background: I hate SVN and finally got my boss to agree to move to git, if I can make him happy

[git-users] git - svn migration question

2012-12-19 Thread Daniel Pomerantz
and then git clone --bare Git_Repo_Name git_repo_name.git Will that even work? Is it the best way for a bare repo migrated from svn? Any help would be appreciated. tia, Daniel --

[git-users] Re: How to revert --amend

2012-11-08 Thread Daniel Dotsenko
) is no-go. Now, none of this may be answering your question, but then you would need to blame your phrasing of the question :) Daniel On Thursday, November 8, 2012 12:29:16 PM UTC-8, kramer.newsreader wrote: Hi, I made a commit and pushed it to a remote repo (gerrit). It turns out that my

[git-users] Re: Setting up multiple remotes

2012-11-08 Thread Daniel Dotsenko
remotename localbranchname If you want to remove remote branch: git push remotename :remotebranchname Daniel On Thursday, November 8, 2012 12:27:02 PM UTC-8, Robson wrote: Hi. I usually work in different machines, and I wonder how to set up a second remote to the local repository in each

[git-users] Re: git with team development

2012-11-08 Thread Daniel Dotsenko
and double-click to run. There is also a script that makes it a Windows Service (so very suitable for running on actual server). Written in Python, so you'll need to to install Python runtime + Python Windows modules on server. Daniel. On Wednesday, November 7, 2012 2:43:53 AM UTC-8, John

Re: [git-users] git svn dcommit after git rebase

2012-10-03 Thread Daniel P. Wright
Simone (Oct03日(Wed)) Hello, I have a git local branch tracking a svn remote branch. I noticed that if I git rebase that branch onto another local branch (tracking a different svn remote branch) then the dcommit I do on the first goes to the remote of the second. IOW branches:

Re: [git-users] avoid pulling binaries

2012-09-25 Thread Daniel P. Wright
The SHA-1 hash which identifies each commit in git is generated from the state of the tree at that point and thus having a version of that commit with binaries and a version without results in -- as far as git is concerned -- entirely separate commits. It is really useful when the same commit

[git-users] Re: Problems with Git install on Windows 7

2012-09-07 Thread Daniel Dotsenko
/gitextensions/downloads/list Try the complete package. Daniel. On Friday, September 7, 2012 2:22:05 PM UTC-7, jak wrote: I downloaded and installed 1.7.11 from http://git-scm.com/download/win last week. (actually I've done it twice). I'm having several problems that seems like my install is missing

Re: [git-users] Checking out files into existing directory

2012-08-07 Thread Daniel P. Wright
Jeffery Brewer (Tue, Aug 07, 2012 at 11:54:16AM -0700) So here's my current problem. I'm trying to checkout (not sure if that's the right term or not) files from my repository into an existing folder (a Try to be careful with terminology. It's made more confusing by the fact that the same

Re: [git-users] Beginner stuck in a commit

2012-08-06 Thread Daniel P. Wright
Hello, Jeffery Brewer (Mon, Aug 06, 2012 at 07:57:13PM -0700) I've slowly been trying to get git to work and just running into loads of problems. Using the windows bash I just tried to do a commit this evening and forgot to add a message (e.g. -m my work for today) and sent the bash

Re: [git-users] Sorry...need help installing on windows

2012-07-23 Thread Daniel P. Wright
Jeffery Brewer (Mon, Jul 23, 2012 at 03:24:46PM -0700) OK, so I've read about GIT, I took the free online course over at Code School, I spent more time reading about git, read the git book on the git website...I'm eager to try it out...I go to the Git website, download the windows

[git-users] Re: Moving to git

2012-07-02 Thread Daniel Dotsenko
possible by painless merging. Merging branches (and rewriting history) in Git is painless. 1 and 2 save us a ton of money. The end. Daniel. On Sunday, July 1, 2012 1:29:04 PM UTC-7, Thomas Ferris Nicolaisen wrote: On Sunday, July 1, 2012 9:54:25 AM UTC+2, David MZ wrote: Hello, I want to drive

[git-users] Re: How to make a new branch with a portion of a branch?

2012-06-17 Thread Daniel Dotsenko
in 2.2 branch will have new commit IDs. Daniel. On Sunday, June 17, 2012 6:12:26 AM UTC-7, EricP wrote: Hi, I've been working on a branch, say '2.1' and made a few commits on it. We've made a release and tagged the changeset at which the commit was produced, say 'tag2.1

[git-users] Apply merge rules from .gitattributes file to git rebase calls

2012-06-01 Thread Daniel P. Wright
Hello, I have been using custom merge rules based on an answer I found on stackoverflow[1] a while back, in order to merge certain filetypes automatically. This has worked well, however I now find myself using `git rebase` at least as frequently as I do `git merge`, and when I do so it appears

[git-users] Re: Git over HTTP tunnel

2012-05-08 Thread Daniel Dotsenko
+ encoding chunked whenever sent pack's size is more than *** (forgot. either 100k or 1m). Git Smart HTTP server sends right headers to client advertising the protocol. Any of this can die when passed through a crappy proxy. Daniel. On Tuesday, May 8, 2012 9:22:43 AM UTC-7, newbie wrote: Hi

[git-users] Re: GIT push over HTTP

2011-09-06 Thread Daniel
http. Authenticated pushes requires httpS. Daniel. On Sep 6, 12:07 am, MohanR radhakrishnan.mo...@gmail.com wrote: http://stackoverflow.com/questions/827351/push-origin-master-error-on... This was what I referred. On Sep 6, 11:28 am, MohanR radhakrishnan.mo...@gmail.com wrote

[git-users] Re: a simple howto git webserver

2011-04-23 Thread Daniel
Not sure what simple means in your case. There is a simple to set up (1. Download, 2. Run) Git server as a project here: https://github.com/dvdotsenko/ges No authentication supported, though, by default. On Apr 22, 2:56 pm, badbyte tarek.kil...@googlemail.com wrote: Hi, i wanted to know if

[git-users] Re: Git enterprise setup on a large project

2011-04-04 Thread Daniel
-level apps seprately from libs, hence i am ready for Git submodules That first part is often wrong. Postpone all contemplation of submodules until later as that is a pain of a complication in process. Moving to Git alone is good enough. Daniel. On Apr 2, 12:55 pm, FredJ frederic.jec...@gmail.com wrote

Re: [git-users] Re: Setting up a remote repo when the local is already in course

2011-02-14 Thread Daniel Trezub
Ok, thanks. So, even if my remote repo is a brand-new one and my local repo is ages old with a lots of history, after the push the remote repo will have all my history? = Daniel Trezub http://www.gameblogs.com.br On 13 February 2011 23:46, Jeenu gro...@jeenuv.otherinbox.com wrote

Re: [git-users] Re: Setting up a remote repo when the local is already in course

2011-02-13 Thread Daniel Trezub
question is about the remote way of live with git: when I merge/rebase to a remote/origin/master branch, git only updates my local copy of this branch, right? I should use git push to send the changes to the server or it'll do it automatically? Thanks a lot! Daniel Trezub -- You received

Re: [git-users] Re: Doubts about Wordpress upgrade using git

2011-02-12 Thread Daniel Trezub
Thanks, Thomas. I'll give a look at all the links you provided. Cheers, = Daniel Trezub http://www.gameblogs.com.br On 12 February 2011 10:32, Thomas Ferris Nicolaisen tfn...@gmail.comwrote: Probably the best thing here is to see how other people do it. I don't know much about Wordpress

[git-users] Setting up a remote repo when the local is already in course

2011-02-11 Thread Daniel Trezub
that, what should I do to upload my changes without risking to kill my live site? I have a branch named 'master' that is supposed to be my release branch. I think I am doing ok with my local repo and git, but the remote part is still a mystery to me. Thanks for your help, pals! = Daniel Trezub http

[git-users] Doubts about Wordpress upgrade using git

2011-02-09 Thread Daniel Trezub
branch will have the same content of the MASTER branch? I don´t quite understant rebase, sorry :S Do I have to delete all files from the UPSTREAM branch or just overwrite them? Thanks for your time and sorry for the long message. = Daniel Trezub http://www.gameblogs.com.br -- You received

[git-users] Something wrong after simple merge

2011-02-03 Thread Daniel Trezub
, and the good commit is the last commit after the merge. What can I do to find what´s wrong? How can I undo the merge, so I do not loose my two commits? Am I doing something wrong? Thanks for your help! = Daniel Trezub http://www.gameblogs.com.br -- You received this message because you

Re: [git-users] Digest for git-users@googlegroups.com - 4 Messages in 2 Topics

2010-10-06 Thread Daniel Dotsenko
I looked at git's siurce recently because of the related problem. I was looking at SmartHTTP protocol specific code and dont see in you message is about git: or http: protocol, but it could be the same code in the back... When a recent git client sends a pack file larger than 1mb it switches curl

Re: [git-users] Merging workflow

2010-08-12 Thread Daniel Trezub
Hi, David I have this very same question (but I think you expressed it way better) I am trying to figure it out. If I can discover the answer, I´ll post here. Thanks. = Daniel Trezub http://www.gameblogs.com.br On 12 August 2010 11:22, David Doria daviddo...@gmail.com wrote: Hi all, I

[git-users] Developing Wordpress plugins

2010-08-10 Thread Daniel Trezub
for the site-list plugin, so I can develop them separatedly. The problem is: I have no idea how I can keep my main wordpress installation up-to-date with the changes in both plugins, once they are tested and commited. Any ideas, tips, whatever? :) Thanks a lot! = Daniel Trezub http