The gist:
Essentially, what I need to make everyone feel more comfortable with git:
- For each, individual devs'
git status
to be visible by the other devs. - Some sort of trigger or hook on
git add
- hopefully, for making better use of 'staging' and also for seeing the mistakes our less-experienced developer(s) make initially -- so we can guide them a bit instead of them quietly floudering through a relatively simple thing.
At this moment, I don't see a way to do this aside from having a monitor that has tiled display of an SSH on each machine with $watch git status
-- and an alias for git add
that makes a copy of the file into two places -- the local, development server, and into code-reviewer's inbox.
However, since Git does tracking, I'm sure that there's a better way to do this.
A bit more info:
I work with a team of three to four developers, depending on the project, and currently, I am in the process of migrating us over to Git.
Some of the team are reluctant to transition to Git (despite the previous chaos / primitive-nature of the system they had before), they all know the basics.
I've set up Git on all of their machines - with git-daemon
, listening on 9418.
Is there any way to do this? Or perhaps I will need to kajigger something else -?
Or perhaps there is an entirely better way to approach this -?
Any insight or guidance is greatly appreciated, as I am somewhat new to Git, myself..