Re: Working from different machines.

2016-08-18 Thread Jakub Narębski
W dniu 18.08.2016 o 16:28, Tobiah pisze: > ## [...] Why does it still mention 'flipper' and 'tart' and all > ## other branches I've played with. When I delte them locally, I want > ## them to be deleted everywhere. They just keep accumulating. In case of non-mirror setup. Git wouldn't delete r

Re: Working from different machines.

2016-08-18 Thread Tobiah
On 08/17/2016 03:41 PM, Junio C Hamano wrote: Tobiah writes: In other words, I want to work from different machines, and always sit down to the environment exactly as I last left it. You have several options, but it depends on untold expectations you have beyond "exactly as I last left it."

Re: Working from different machines.

2016-08-18 Thread Tobiah
* First, `--mirror` might be what the relation between 'desktop' and 'home' repositories should be. Here's what I'm trying, am I in the right ballpark? desk> git branch * master desk> git checkout -b banana Switched to a new branch 'banana' desk> echo 'message' > oracle desk> git add ora

Re: Working from different machines.

2016-08-18 Thread Jakub Narębski
W dniu 18.08.2016 o 00:41, Junio C Hamano pisze: > Tobiah writes: > [...] the next question is if you commit all the > changes you made before you leave the 'desktop'. [...] > > If the answer is "yes", then you are in the problem space that > Git-the-tool is interested in solving. Assuming that

Re: Working from different machines.

2016-08-17 Thread Jacob Keller
On Wed, Aug 17, 2016 at 3:41 PM, Junio C Hamano wrote: > If the answer is "yes", then you are in the problem space that > Git-the-tool is interested in solving. Assuming that you have > network connection into 'desktop' from 'home', the solution would > involve making it the first thing to do whe

Re: Working from different machines.

2016-08-17 Thread Junio C Hamano
Tobiah writes: > In other words, I want to work from different machines, and always > sit down to the environment exactly as I last left it. You have several options, but it depends on untold expectations you have beyond "exactly as I last left it." So the following is only to show directions a

Working from different machines.

2016-08-17 Thread Tobiah
Right now I have a server at work where I keep a bare repository as a source and backup for projects. So I clone a project from there to my desktop, and work, making a few branches as I try out ideas for new features. Then I go home, and I want to work as though I was sitting at my desktop. If