Click here to Skip to main content
15,890,897 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: I need a tool to visually track branches in git Pin
Jacquers25-Jun-21 20:42
Jacquers25-Jun-21 20:42 
GeneralRe: I need a tool to visually track branches in git Pin
RickZeeland26-Jun-21 0:27
mveRickZeeland26-Jun-21 0:27 
GeneralRe: I need a tool to visually track branches in git Pin
Slow Eddie26-Jun-21 3:54
professionalSlow Eddie26-Jun-21 3:54 
GeneralRe: I need a tool to visually track branches in git Pin
Member 916705727-Jun-21 20:26
Member 916705727-Jun-21 20:26 
GeneralRe: I need a tool to visually track branches in git Pin
rallets28-Jun-21 1:42
rallets28-Jun-21 1:42 
AnswerRe: I need a tool to visually track branches in git Pin
Bwana Bob28-Jun-21 3:40
Bwana Bob28-Jun-21 3:40 
GeneralRe: I need a tool to visually track branches in git Pin
maze328-Jun-21 3:18
professionalmaze328-Jun-21 3:18 
GeneralRe: I need a tool to visually track branches in git Pin
PhilipOakley28-Jun-21 3:40
professionalPhilipOakley28-Jun-21 3:40 
The 'gitk' tool is pretty good for showing history and is typically packaged with Git. It can take command line options that limit which lines of development are shown, and where they should start and end, though the documentation is minimal..

Likewise the git-gui is a nice developer front end for those who aren't 100% head-in-a-terminal.

The key aspects will be to set ground rules, and to decide on the server/remote structure (or set rules based on the one you are given, e.g. single central repo, or repo [fork] per dev plus a golden repo).

Remember that Git distributes 'control' to the developer, away from the manager.

But that is good! Because the manager no only has to decide if contributions are acceptable for inclusion on the main/master/trunk.

It is also good because the developer can now keep all their wip revisions on their own machine with many and varied branches, and you don't care! Finally they start using version management because it helps them!

Key rules:
* Small commits often, with imperative style concise comments (try looking at the git repo itself).
* merge relatively often, or rebase long running dev branches (minimal in-work tech debt)
* All file names must be valid Windows file names. No Directory/File name (Linux) conflicts (i.e. no Readme/Readme, foo/foo) Git won't accept them.
* Give devs their own branch namespace prefix `dev1/`, or use initials like my `po/`
* Use a hook on the central repo to ensure simple common sense (branch separation).
* Keep focus on the prize.
* Don't tell senior management. They will only misunderstand even worse! (Job for Direct Implementation - JFDI)
GeneralRe: I need a tool to visually track branches in git Pin
PhilipOakley28-Jun-21 4:03
professionalPhilipOakley28-Jun-21 4:03 
GeneralRe: I need a tool to visually track branches in git Pin
Jacquers29-Jun-21 2:45
Jacquers29-Jun-21 2:45 
GeneralThought of the Day Pin
OriginalGriff25-Jun-21 4:33
mveOriginalGriff25-Jun-21 4:33 
GeneralRe: Thought of the Day Pin
W Balboos, GHB25-Jun-21 4:38
W Balboos, GHB25-Jun-21 4:38 
GeneralRe: Thought of the Day Pin
Daniel Pfeffer25-Jun-21 5:56
professionalDaniel Pfeffer25-Jun-21 5:56 
GeneralRe: Thought of the Day Pin
Slow Eddie26-Jun-21 3:43
professionalSlow Eddie26-Jun-21 3:43 
GeneralMS inverts AppleStore Colussus model ? Pin
BillWoodruff25-Jun-21 4:27
professionalBillWoodruff25-Jun-21 4:27 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
OriginalGriff25-Jun-21 4:37
mveOriginalGriff25-Jun-21 4:37 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
BillWoodruff25-Jun-21 5:37
professionalBillWoodruff25-Jun-21 5:37 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
OriginalGriff25-Jun-21 6:15
mveOriginalGriff25-Jun-21 6:15 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
Chris Maunder25-Jun-21 5:14
cofounderChris Maunder25-Jun-21 5:14 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
Dan Neely25-Jun-21 5:30
Dan Neely25-Jun-21 5:30 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
Richard Andrew x6425-Jun-21 5:55
professionalRichard Andrew x6425-Jun-21 5:55 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
BillWoodruff25-Jun-21 6:06
professionalBillWoodruff25-Jun-21 6:06 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
Chris Maunder25-Jun-21 6:50
cofounderChris Maunder25-Jun-21 6:50 
GeneralRe: MS inverts AppleStore Colussus model ? Pin
PIEBALDconsult25-Jun-21 6:36
mvePIEBALDconsult25-Jun-21 6:36 
GeneralAnd they say crime doesn't pay... Pin
OriginalGriff25-Jun-21 3:14
mveOriginalGriff25-Jun-21 3:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.