LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > 2014 LinuxQuestions.org Members Choice Awards
User Name
Password
2014 LinuxQuestions.org Members Choice Awards This forum is for the 2014 LinuxQuestions.org Members Choice Awards.
You can now vote for your favorite products of 2014. This is your chance to be heard! Voting ends on February 3rd.


Notices


View Poll Results: Revision Control System of the Year
Bazaar 0 0%
BitKeeper 2 0.70%
CVS 6 2.11%
Darcs 1 0.35%
Fossil 2 0.70%
git 207 72.63%
Mercurial 20 7.02%
Perforce 4 1.40%
Subversion 43 15.09%
Voters: 285. You may not vote on this poll

Reply
  Search this Thread
Old 12-17-2014, 03:48 PM   #16
wayward4now
Member
 
Registered: Jul 2009
Distribution: Debian Sid
Posts: 73

Rep: Reputation: 8

Am I the last guy alive using subversion??
 
Old 12-17-2014, 03:53 PM   #17
cyent
Member
 
Registered: Aug 2001
Location: ChristChurch New Zealand
Distribution: Ubuntu
Posts: 398

Rep: Reputation: 87
Quote:
Originally Posted by wayward4now View Post
Am I the last guy alive using subversion??
Call that living? ;-)

Our company migrated from CVS to svn to hg (with git for open embedded projects).

Everybody fled CVS with a deep sigh of relief... Some die hards still cling to svn (well, that "copying is cheap, everything is a copy" paradigm is sort of neat).

Most have moved on to hg. Last time we had a close look, file renames and branch merges were just sooo much smoother in hg than svn)

Curiously enough the "The True Name of a File is it's Contents" approach of git means that file renames and copies and branch merges work very well too.
 
Old 12-19-2014, 03:16 PM   #18
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,225

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by wayward4now View Post
Am I the last guy alive using subversion??
I hope so.
 
Old 01-06-2015, 02:13 PM   #19
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
I enjoy using git on a daily basis for everything I work on. It made my work much more comfortable. The next step will be to store all configs in a single git repository with a separate branch for every machine.

Last edited by average_user; 01-06-2015 at 02:18 PM.
 
Old 01-07-2015, 02:53 PM   #20
kmizser
LQ Newbie
 
Registered: Jan 2015
Posts: 1

Rep: Reputation: Disabled
git
 
Old 01-07-2015, 07:48 PM   #21
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,225

Rep: Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320Reputation: 5320
Quote:
Originally Posted by average_user View Post
I enjoy using git on a daily basis for everything I work on. It made my work much more comfortable. The next step will be to store all configs in a single git repository with a separate branch for every machine.
That's a good idea.
 
Old 01-08-2015, 08:02 AM   #22
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
Quote:
Originally Posted by dugan View Post
That's a good idea.
Right. I recently got a router because my old one went down. I have SSH set up on port 443 and OpenWRT installed. I am going to create a bare repository on my router and access it from anywhere in the world or use Github for that purpose.
 
Old 01-12-2015, 06:03 PM   #23
gotfw
Member
 
Registered: Jan 2007
Posts: 416

Rep: Reputation: 70
Is there any question who won this war? Nope. +1 for git.
 
Old 01-16-2015, 01:00 AM   #24
colonelqubit
LQ Newbie
 
Registered: Feb 2014
Location: Vermont
Posts: 7

Rep: Reputation: Disabled
Binary or FODF?

Quote:
Originally Posted by dr_agon View Post
I started to use it for all my documents, including OpenDocument
Are you using the regular binary ODF formats, or the flat-xml versions?

(Just curious about how the FODF formats are working out in version control for people in the real world )
 
Old 01-17-2015, 04:28 PM   #25
dr_agon
Member
 
Registered: Sep 2007
Location: Poland
Distribution: Ubuntu LTS
Posts: 105
Blog Entries: 12

Rep: Reputation: 26
Quote:
Originally Posted by dr_agon View Post
I started to use it [git] for all my documents, including OpenDocument or MSOffice
Quote:
Originally Posted by colonelqubit View Post
Are you using the regular binary ODF formats, or the flat-xml versions?
I use binary ODF format, but have git configured to filter it through odt2txt before diff-ing.
Code:
[diff "ODF"]
	textconv = odt2txt
I make the same with MSOffice files (filter through antiword)
This way I have readable diffs in all tools like git gui or gitk, for the price of ignoring most formatting. And the comfort of having all documents under easy version control is priceless
 
Old 01-17-2015, 05:04 PM   #26
average_user
Member
 
Registered: Dec 2010
Location: Warsaw, Poland
Distribution: Slackware
Posts: 560

Rep: Reputation: 220Reputation: 220Reputation: 220
Interesting. I use Latex for writing anything more complicated. I wrote my CV, my master's thesis and several long documents at work using Latex. It works great with git.

One more thing, can you share your experience how reliable antiword is? Does it work well for Word documents with multiple tables? I work in a corporate environment and people will often send complicated Word documents such as proposals, sometimes several times a week with some minor changes. It would be great if I could just generate git diff on them. And I would love to have something similar for Excel files.

Last edited by average_user; 01-17-2015 at 06:58 PM.
 
Old 01-18-2015, 08:18 AM   #27
dr_agon
Member
 
Registered: Sep 2007
Location: Poland
Distribution: Ubuntu LTS
Posts: 105
Blog Entries: 12

Rep: Reputation: 26
Quote:
Originally Posted by average_user View Post
One more thing, can you share your experience how reliable antiword is?
It does extract text, which allows to peek inside documents from git tools. Don't expect miracles when diffing tables with complex formatting. Just test it, it's simple. Note, that it does not support docx files. See for example http://stackoverflow.com/questions/5...ocx-files-unix.
 
Old 01-29-2015, 01:54 PM   #28
flintg
LQ Newbie
 
Registered: Feb 2014
Location: Denver, CO
Distribution: CentOS
Posts: 12

Rep: Reputation: Disabled
git, hands down. It's so easy to learn, we even got our technical writer using it!
 
Old 01-30-2015, 04:44 PM   #29
haziz
Member
 
Registered: Jan 2012
Location: /dev/null
Distribution: Slackware, Fedora, Debian, Arch, Ubuntu
Posts: 101

Rep: Reputation: 4
Mercurial

I have mixed feelings here. I use Git the most, but have always found Mercurial to be far better designed and more user friendly. I use both from the CLI. I voted for Mercurial.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Revision Control System of the Year jeremy 2013 LinuxQuestions.org Members Choice Awards 13 02-04-2014 03:01 AM
Revision Control System of the Year jeremy 2012 LinuxQuestions.org Members Choice Awards 22 02-01-2013 06:49 AM
Revision Control System of the Year jeremy 2011 LinuxQuestions.org Members Choice Awards 16 02-08-2012 11:59 AM
Revision Control System of the Year jeremy 2010 LinuxQuestions.org Members Choice Awards 16 02-13-2011 02:54 AM
[SOLVED] Help figuring out RCS(Revision Control System), IE: the command CI stevenmnance Linux - Newbie 1 12-05-2009 02:59 PM

LinuxQuestions.org > Forums > 2014 LinuxQuestions.org Members Choice Awards

All times are GMT -5. The time now is 01:28 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration