no --dry-run to git-pull ?
From: Neshama Parhoti <hidden>
Date: 2016-06-15 22:44:53
Hi, Isn't there a way to do a --dry-run with git-pull ? Thank you, pnesh
4 messages, 2 authors, 2016-06-15 · open the first message on its own page
From: Neshama Parhoti <hidden>
Date: 2016-06-15 22:44:53
Hi, Isn't there a way to do a --dry-run with git-pull ? Thank you, pnesh
From: Miklos Vajna <hidden>
Date: 2016-06-15 22:44:53
On Fri, Jul 04, 2008 at 04:56:27PM +0300, Neshama Parhoti [off-list ref] wrote:
Isn't there a way to do a --dry-run with git-pull ?
Not really. But you can do a 'git fetch origin', then a 'git log master..origin/master', and it'll tell you what changes will be merged if you do a 'git merge origin/master'. NOTES: 1) Replace origin and master with your repomte and branch. 2) If this sounds cryptic for you, then it might be an important info that by default a pull is a fetch + a merge.
From: Neshama Parhoti <hidden>
Date: 2016-06-15 22:44:53
On Fri, Jul 4, 2008 at 4:59 PM, Miklos Vajna [off-list ref] wrote:
On Fri, Jul 04, 2008 at 04:56:27PM +0300, Neshama Parhoti [off-list ref] wrote:quoted
Isn't there a way to do a --dry-run with git-pull ?Not really. But you can do a 'git fetch origin', then a 'git log master..origin/master', and it'll tell you what changes will be merged if you do a 'git merge origin/master'. NOTES: 1) Replace origin and master with your repomte and branch. 2) If this sounds cryptic for you, then it might be an important info that by default a pull is a fetch + a merge.
What puzzles me is the origin keyword. Is it set only if I initially cloned a repo ? Because in my case, I have just rsync'ed a repo to another station, so I fear it will have no meaning in my case. Thank you
From: Miklos Vajna <hidden>
Date: 2016-06-15 22:44:53
On Fri, Jul 04, 2008 at 06:26:02PM +0300, Neshama Parhoti [off-list ref] wrote:
quoted
1) Replace origin and master with your remote and branch. 2) If this sounds cryptic for you, then it might be an important info that by default a pull is a fetch + a merge.What puzzles me is the origin keyword. Is it set only if I initially cloned a repo ? Because in my case, I have just rsync'ed a repo to another station, so I fear it will have no meaning in my case.
Heh. git remote add -f origin <url>, then you'll have it. And yes, you have it if you cloned the repo, of course rsync won't add it. ;-)