utilizzando il controllo del codice sorgente per creare note di rilascio?

2

Diciamo che ho un carrello ecommerce off-the-shelf. Ho inserito tutto il codice all'interno di subversion. Inizio a modificare e a ricontrollare le modifiche al codice.

è quindi possibile visualizzare ogni "check in" con i messaggi dello sviluppatore in modo da poter creare note di rilascio?

Vorrei usare questo per il tempo reale citato.

    
posta SOLDIER-OF-FORTUNE 19.06.2012 - 14:15
fonte

2 risposte

10

Come notato, svn log ti darà questa risposta. Ma questo in realtà non è adatto al monitoraggio del tempo: quasi tutti i sistemi di contabilità hanno bisogno di un buco per la riformulazione, la modifica di una descrizione di commit svn può essere complicata se non impossibile a causa degli hook post-commit.

Potresti voler vedere qualcosa come Redmine che si integra con SVN e ha una funzionalità di tracciamento del tempo integrata.

    
risposta data 19.06.2012 - 15:06
fonte
4

Scopri svn log . Dovrebbe fare ciò che cerchi.

...the repository is like a time machine. It keeps a record of every change ever committed, and allows you to explore this history by examining previous versions of files and directories as well as the metadata that accompanies them... There are several commands that can provide you with historical data from the repository...

To find out information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit...

If you want even more information about a file or directory, svn log also takes a --verbose (-v) switch. Because Subversion allows you to move and copy files and directories, it is important to be able to track path changes in the filesystem, so in verbose mode, svn log will include a list of changed paths in a revision in its output...

    
risposta data 19.06.2012 - 14:20
fonte

Leggi altre domande sui tag