Re: [git-users] Git checkout visual issue in CMD

2015-12-16 Thread Magnus Therning

Diego J. writes:

> When I "checkout" a branch using different Upper Case/Lower Case than the
> original, the branch doesn't show in "git branch [--list]"
>
>
> 

Here's what happens on Linux (git version 2.6.4):

~~~
$ git co mASter
error: pathspec 'mASter' did not match any file(s) known to git.
~~~

Could this be something related to the case insensitivity of the Windows
file system?

/M

--
Magnus Therning  OpenPGP: 0x927912051716CE39
email: mag...@therning.org   jabber: mag...@therning.org
twitter: magthe   http://therning.org/magnus

About the use of language: it is impossible to sharpen a pencil with a
blunt axe. It is equally vain to try to do it with ten blunt axes
instead.
 -- Edsger Dijkstra

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: PGP signature


[git-users] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2015-12-16 Thread sam a
YouTube videos of



 U.S. Congress money laundering hearing


of

Saudi Billionaire  " Maan  Al sanea"

 with *bank of America*


and  The  owner of Saad Hospital and  Schools

 in the Eastern Province in *Saudi Arabia*



and the Chairman of the Board of Directors of Awal Bank  in *Bahrain*


With Arabic Subtitles





*موقع اليوتيوب الذي عرض جلسة استماع الكونجرس الأمريكي *

* لمتابعة نشاطات غسل الأموال ونشاطات*



*السعودي معن عبدالواحد الصانع*



*مالك مستشفى  وشركة سعد  ومدارس سعد بالمنطقة الشرقية بالسعودية   ورئيس مجلس
ادارة بنك اوال البحريني*



*مترجم باللغة العربية*



http://www.youtube.com/watch?v=mIBNnQvhU8s

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[git-users] Git checkout visual issue in CMD

2015-12-16 Thread Diego J.


When I "checkout" a branch using different Upper Case/Lower Case than the 
original, the branch doesn't show in "git branch [--list]"






-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Setting schedule to block for commit and push

2015-12-16 Thread Magnus Therning

agnes monest writes:

> Can anybody have any reference if I want to setup that git won't receive
> any push and pull at certain time? for example, after 5 P.M no body have
> permission to send their code to server.

That's the sort of thing (server side) hooks are for.  I don't have any
hook already implemented, but it shouldn't be too difficult.

/M

--
Magnus Therning  OpenPGP: 0x927912051716CE39
email: mag...@therning.org   jabber: mag...@therning.org
twitter: magthe   http://therning.org/magnus

Code as if whoever maintains your program is a violent psychopath who knows
where you live.
 -- Anonymous

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: PGP signature


[git-users] Setting schedule to block for commit and push

2015-12-16 Thread agnes monest
Can anybody have any reference if I want to setup that git won't receive 
any push and pull at certain time? for example, after 5 P.M no body have 
permission to send their code to server.

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [git-users] Updating the working set without updating the index?

2015-12-16 Thread Konstantin Khomoutov
On Tue, 15 Dec 2015 13:33:56 -0800 (PST)
Ryan Milligan  wrote:

> Hello all, I’m not really sure how to quickly sum up the scenario I’m 
> trying to achieve here, so this is going to run a little bit long.
> 
> Basically, I’ve run into several situations where I want to be able
> to create a commit such that:
[...]
> So the question is, does something exist that can do something like
> this already? If not, do the gurus think this would be a good fit for
> a feature request? 

Sorry, I have no time ATM to read through the whole message but let me
suggest to try out two things right away.

First, for individual files, you can always use `git show` + shell
redirection:

git show $someRev:path/to/file >path/to/file

would overwrite the file at path/to/file with its contents as found in
commit $someRev.

Second, you can still check your files out through the index while
simply fooling Git about where the index is located:

   export GIT_INDEX_FILE=`mktemp /tmp/indexXX`
   git read-tree -i -u $revA
   rm -f "$GIT_INDEX_FILE"
   unset GIT_INDEX_FILE

You can easily make a function out of this code and put it into your
~/.whateverrc

-- 
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...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.