[git-users] Copy file preserving hostory

2016-09-05 Thread hellboy
I am looking for the simplest way to copy file from one git repo to another one on Windows platform (may be with Mingw) or in Webstorm. -- 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 em

Re: [git-users] gitlab CE vs gitlab EE vs bitbucket (on-prem) or something else

2016-09-05 Thread Michael
On 2016-08-29, at 4:09 AM, Philip Oakley wrote: > ... > So I have junio/master and dscho-git/master, along with my/master (what I > last had on github), so that's three 'master' branches belonging to remotes, > and master (my truly local one). As a contributor, I sign my patches, but > others

Re: [git-users] Push to my repository at the github and my owner private repository

2016-09-05 Thread Konstantin Khomoutov
On Mon, 5 Sep 2016 05:16:39 -0700 (PDT) edgaroliveira@gmail.com wrote: > I have a repository in github and I also need have this repository in > my owner private repository, at home. > I would like do "git push origin master", once time to github and > another time to my owner private reposito

Re: [git-users] Help needed, doing a clone --depth

2016-09-05 Thread Philip Oakley
see in line - Original Message - From: "Michael" To: Sent: Sunday, September 04, 2016 11:57 PM Subject: Re: [git-users] Help needed, doing a clone --depth Ok, with debugging info. Can anyone tell me what I'm doing wrong / what will fix this? keybounceMBP:git michael$ GIT_TRACE=2

Re: [git-users] Re: Commit only two files from stage to repository at once

2016-09-05 Thread edgaroliveira . dev
At this moment I stay stupid with my naivety :P I used this instruction on my scripts and command at the shell, I should have recognized this! :) Thanks anyway -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this gr

[git-users] Push to my repository at the github and my owner private repository

2016-09-05 Thread edgaroliveira . dev
Hello, I have a repository in github and I also need have this repository in my owner private repository, at home. I would like do "git push origin master", once time to github and another time to my owner private repository, it's possible? Thanks -- You received this message because you are

Re: [git-users] How to remove commit from branch

2016-09-05 Thread Michael
On 2016-09-05, at 3:06 AM, Philip Oakley wrote: > Remember, new branches cost nothing! (Ok, so it's a 40 byte file, but that's > still nothing) I think that 40 byte file costs a full 4K allocation block, no? (I know, file system dependent). --- Entertaining minecraft videos http://YouTube.com

Re: [git-users] How to remove commit from branch

2016-09-05 Thread Philip Oakley
What do you mean by "temporarily" - what purpose does it serve, what willl you do with the result..? One method is to start a fresh branch from the tip of the current branch and immediatelt 'revert' the commit you want removed. The resulting worktree (file system contents) will be as if it had

Re: [git-users] How to remove commit from branch

2016-09-05 Thread Gergely Polonkai
With an interactive rebase. $ git rebase --interactive "commit HASH to remove"^ # note the ^ character In the rebase TODO list, remove the commit(s) you don’t need, save and exit. If the commit is really old (in term of new commits, not necessarily time), there may be merge conflicts, so be prep

[git-users] How to remove commit from branch

2016-09-05 Thread hellboy
How can I (temporally) remove commit from branch if this commit is not the last in the history -- 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