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 t

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

2013-08-22 Thread Philip Oakley
ject: [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,

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

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 deci

[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 convenien