Where did git put my files?

2018-04-26 Thread Ryan Schmidt
I am working on implementing https://trac.macports.org/ticket/56055. As a result, I have a number of generated files in the /dist/ directory that I was working with, and a number of hand-crafted variations of those files for experimentation. I needed to take a break from this task, and switch t

Re: Where did git put my files?

2018-04-26 Thread Michael
On 2018-04-26, at 5:01 PM, Ryan Schmidt wrote: > To do this, I was first required to stash or commit my unfinished work. I > used git stash, followed by git checkout my-other-branch. After finishing > work there, I returned to my original branch with git checkout > my-original-branch, and res

Re: Where did git put my files?

2018-04-26 Thread Ryan Schmidt
On Apr 26, 2018, at 20:38, Michael wrote: > On 2018-04-26, at 5:01 PM, Ryan Schmidt wrote: > >> To do this, I was first required to stash or commit my unfinished work. I >> used git stash, followed by git checkout my-other-branch. After finishing >> work there, I returned to my original branch

Re: Where did git put my files?

2018-04-27 Thread Jeremy Lavergne
I just replicated the scenario (create files in a git-ignored dir) and switch between branches: files stayed put. On 04/26/2018 09:46 PM, Ryan Schmidt wrote: > > On Apr 26, 2018, at 20:38, Michael wrote: > >> On 2018-04-26, at 5:01 PM, Ryan Schmidt wrote: >> >>> To do this, I was first required