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 and
feathered for sending HTML mails though plain text is preferred.  You
probably heared of the official git development list which completely
rejects HTML mail even when it comes with an alternative plain text
part.

> I don't see a ... for turning off HTML in the compose window.

Yeah, Google Groups is pretty shitty.

Bye,
Tassilo

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/git-users/87sfcjlnwr.fsf%40gnu.org.


[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.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/git-users/e1118b47-0ca7-4072-9e8e-96b30b0c13f7n%40googlegroups.com.


[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 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 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 for the next commit in the working tree, using the --keep-index 
> parameter. This workflow is described in the docs for 
> stash(but 
> note that the short form 'git stash --keep-index is sufficient):
>
>Testing partial commits
>You can use git stash save --keep-index when you want to make 
> two or more commits out of the
>changes in the work tree, and you want to test each change 
> before committing:
>
># ... hack hack hack ...
>$ git add --patch foo# add just first part to 
> the index
>$ git stash save --keep-index# save all other changes 
> to the stash
>$ edit/build/test first part
>$ git commit -m 'First part' # commit fully tested 
> change
>$ git stash pop  # prepare to work on all 
> other changes
># ... repeat above five steps until one commit remains ...
>$ edit/build/test remaining parts
>$ git commit foo -m 'Remaining parts'
>
> It takes a little getting used to, but it's awesome once you get into it.
>

-- 
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/groups/opt_out.


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

2013-08-22 Thread Philip Oakley
One possible technique its to check out the current index into a temporary git 
work directory (which can be set as part of the command).

Given that you may not have committed the current index, I see the options as 
creating a temporary branch just to commit the current index, or using one of 
the 'git reset' options to extract the index into the temporary working 
directory. 

Hope that gives you some ideas for browing the manual.

Philip
  - Original Message - 
  From: joeriel...@gmail.com 
  To: git-users@googlegroups.com 
  Sent: Friday, August 23, 2013 5:55 AM
  Subject: [git-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 it doesn't break a build.  Is there a convenient way to do so?

  -- 
  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/groups/opt_out.

-- 
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/groups/opt_out.


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

2013-08-22 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 for the next commit in the working tree, using the --keep-index 
parameter. This workflow is described in the docs for 
stash(but note 
that the short form 'git stash --keep-index is sufficient):

   Testing partial commits
   You can use git stash save --keep-index when you want to make 
two or more commits out of the
   changes in the work tree, and you want to test each change 
before committing:

   # ... hack hack hack ...
   $ git add --patch foo# add just first part to 
the index
   $ git stash save --keep-index# save all other changes to 
the stash
   $ edit/build/test first part
   $ git commit -m 'First part' # commit fully tested change
   $ git stash pop  # prepare to work on all 
other changes
   # ... repeat above five steps until one commit remains ...
   $ edit/build/test remaining parts
   $ git commit foo -m 'Remaining parts'

It takes a little getting used to, but it's awesome once you get into it.

-- 
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/groups/opt_out.


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

2013-08-22 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,  wrote:

> 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 convenient way to do so?
>
> --
> 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/groups/opt_out.
>

-- 
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/groups/opt_out.


[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 convenient way to do so?

-- 
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/groups/opt_out.