* Update Webservers from a remote repository
@ 2010-09-21 9:02 Matthias Fechner
2010-09-21 9:41 ` Ilari Liusvaara
0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fechner @ 2010-09-21 9:02 UTC (permalink / raw)
To: git
Dear list,
I'm new to git but the more I use it I more I like/love it. :)
I have a central --bare git repository which is the master for all web
servers (I did a git clone http://xxx on each web server).
If I now push changes from my devel station to the central repository I
would like to have them available on all server with a script.
If I understood everything correctly I execute the following commands on
each server:
git checkout master (to be sure we are on branch master)
git fetch (to fetch changes from the central repository)
git merge origin (to update the repo to the changes on the central repo)
I use here origin because the remote name for the central server in the
.git/config file is named origin.
Is that correct or did I missed something?
Thanks,
Matthias
--
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs, and the universe trying to
produce bigger and better idiots. So far, the universe is winning." --
Rich Cook
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Update Webservers from a remote repository
2010-09-21 9:02 Update Webservers from a remote repository Matthias Fechner
@ 2010-09-21 9:41 ` Ilari Liusvaara
2010-09-21 10:52 ` Matthias Fechner
0 siblings, 1 reply; 3+ messages in thread
From: Ilari Liusvaara @ 2010-09-21 9:41 UTC (permalink / raw)
To: Matthias Fechner; +Cc: git
On Tue, Sep 21, 2010 at 11:02:51AM +0200, Matthias Fechner wrote:
>
> If I understood everything correctly I execute the following
> commands on each server:
> git checkout master (to be sure we are on branch master)
> git fetch (to fetch changes from the central repository)
> git merge origin (to update the repo to the changes on the central repo)
>
> Is that correct or did I missed something?
I would do it the following way:
git checkout -f master
git fetch origin
git reset --hard orgin/master
You definitely do not want to run merge non-interactively (conflict risk!)
-Ilari
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Update Webservers from a remote repository
2010-09-21 9:41 ` Ilari Liusvaara
@ 2010-09-21 10:52 ` Matthias Fechner
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Fechner @ 2010-09-21 10:52 UTC (permalink / raw)
To: Ilari Liusvaara; +Cc: git
Am 21.09.10 11:41, schrieb Ilari Liusvaara:
> git checkout -f master
> git fetch origin
> git reset --hard origin/master
>
> You definitely do not want to run merge non-interactively (conflict risk!)
oh good point, thanks a lot.
Bye,
Matthias
--
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs, and the universe trying to
produce bigger and better idiots. So far, the universe is winning." --
Rich Cook
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-09-21 10:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-21 9:02 Update Webservers from a remote repository Matthias Fechner
2010-09-21 9:41 ` Ilari Liusvaara
2010-09-21 10:52 ` Matthias Fechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).