Re: [git-users] Test message - HTML?

2023-04-28 Thread Tassilo Horn
Dan Stromberg writes: Hi Dan, > I'm sending this using "New conversation" on the Google Groups page > for the list. > > Does it come up in HTML or plain text? It contains both a HTML and a plain text part, so readers can view whatever they prefer. Note that on this list you won't be tarred

[git-users] Test message - HTML?

2023-04-28 Thread Dan Stromberg
I'm sending this using "New conversation" on the Google Groups page for the list. Does it come up in HTML or plain text? I don't see a ... for turning off HTML in the compose window. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group.

[git-users] Test

2015-09-10 Thread lei yang
-- 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] test

2014-03-15 Thread tombert
test -- 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] test version in the index

2013-08-23 Thread William Seiti Mizuta
You can put the not commited changes in the stash (git stash). Then you run the tests and recover the changes with git stash pop. William Seiti Mizuta @williammizuta Caelum | Ensino e Inovação www.caelum.com.br On Fri, Aug 23, 2013 at 1:55 AM, joeriel...@gmail.com wrote: After making a

Re: [git-users] test version in the index

2013-08-23 Thread Thomas Ferris Nicolaisen
On Friday, August 23, 2013 7:59:03 AM UTC+2, William Seiti Mizuta wrote: You can put the not commited changes in the stash (git stash). Then you run the tests and recover the changes with git stash pop. A slightly finer variation of this is to continuously stash while you keep the things

Re: [git-users] test version in the index

2013-08-23 Thread Philip Oakley
-users] test version in the index After making a number of changes, I decide I want to commit some of them and continue working on the rest. I do this by moving the desired parts to the index. Before committing, it would useful if there were a way to test this commit alone, say, so

Re: [git-users] test version in the index

2013-08-23 Thread joeriel314
Thanks, that is what I was looking for. I didn't realize stash had the --keep-index option. On Thursday, August 22, 2013 11:15:52 PM UTC-7, Thomas Ferris Nicolaisen wrote: On Friday, August 23, 2013 7:59:03 AM UTC+2, William Seiti Mizuta wrote: You can put the not commited changes in the

[git-users] test version in the index

2013-08-22 Thread joeriel314
After making a number of changes, I decide I want to commit some of them and continue working on the rest. I do this by moving the desired parts to the index. Before committing, it would useful if there were a way to test this commit alone, say, so it doesn't break a build. Is there a