[git-users] Re: any suggestions for pruning all upstream branches after a github fork?

2014-09-30 Thread Thomas Ferris Nicolaisen
On Tuesday, September 30, 2014 7:35:05 AM UTC+2, Sam Roberts wrote: Basically, I'd like to delete every branch in my fork of an upstream repo that is the same as an upstream branch. Not sure if I understood correctly here. You want to delete all local branches which are already remote

Re: [git-users] blob command not supproted ?

2014-09-30 Thread Sabri LABBENE
On Fri, Sep 26, 2014 at 4:48 PM, Konstantin Khomoutov flatw...@users.sourceforge.net wrote: On Fri, 26 Sep 2014 01:58:41 -0700 (PDT) Sabri LABBENE sabri.labb...@gmail.com wrote: I'm trying to using fast-import. My git version is git version 1.9.4.msysgit.0 I'm on a windows platform

Re: [git-users] any suggestions for pruning all upstream branches after a github fork?

2014-09-30 Thread Konstantin Khomoutov
On Mon, 29 Sep 2014 22:34:55 -0700 Sam Roberts vieuxt...@gmail.com wrote: [...] github, for reasons lost to me, gives you a snapshot of all upstream branches at time of fork, but not any new branches created upstream, nor does it ever delete them when upstream deletes, or give any way to

[git-users] File dates after CHECKOUT

2014-09-30 Thread Tom Green
I am working in Windows with GIT. When I need to fix an older released version of our system I CHECKOUT that version. GIT restores the files in my working directory to the *contents* they had on that time. But it does not restore the *file dates*. This causes me problems because many of the

Re: [git-users] File dates after CHECKOUT

2014-09-30 Thread Konstantin Khomoutov
On Tue, 30 Sep 2014 08:17:10 -0700 (PDT) Tom Green tomgreen1...@gmail.com wrote: I am working in Windows with GIT. When I need to fix an older released version of our system I CHECKOUT that version. GIT restores the files in my working directory to the *contents* they had on that time. But

Re: [git-users] any suggestions for pruning all upstream branches after a github fork?

2014-09-30 Thread Sam Roberts
Thanks for your help, folks, you had very detailed responses, but I was not clear enough, I am well aware of the difference between local and remote. I want to delete *remote* branches in repo A that are also in *remote* repo B. I guess you two don't use github, but if you fork a repo that has

[git-users] Is it possible to git add a set of files as non-text, irrespective of any .gitattributes files?

2014-09-30 Thread Sam Roberts
I need to temporarily add a set of text files that come from a unix tar file, and I'm doing it on windows (temporarily, in that I intend to push it to heroku). I can't get around the LF will be converted to CRLF warning. The problem is I don't control the format of the files I'm adding, I don't

[git-users] Re: File dates after CHECKOUT

2014-09-30 Thread Tom Green
Thanks, Konstantin. That's what I was afraid of. -- Tom On Tuesday, September 30, 2014 11:17:11 AM UTC-4, Tom Green wrote: I am working in Windows with GIT. When I need to fix an older released version of our system I CHECKOUT that version. GIT restores the files in my working

Re: [git-users] Re: File dates after CHECKOUT

2014-09-30 Thread Gergely Polonkai
That said, it still can be done, although it is not natively supported, you may do it with some custom tool. By finding the last commit a specific file was modified in, you may apply the date of the commit to that file. However, if you have a large repository, looking at this information for each

[git-users] conflicts in pull requests

2014-09-30 Thread likage
Hi all, I have just started out using Git and I have a couple of questions. Bear with me should the questions sound ridiculous or stupid even... Say, in this repo of mine, there are 3 branches - master (main) and develop branche (feature) So the contents in both develop01 and develop02 will be

[git-users] Prevent Committing or Pushing build files

2014-09-30 Thread Jawahar Babu
Hello everyone, I'm new to this group and to GIT as well. I want to prevent developers from pushing build related files to the central server. Sometimes, the developers accidentally make changes to some the build script and push it to the central server which makes the build to fail. So I