Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-06-2014, 12:37 PM
|
#1
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Rep:
|
Which git?
Which git-package you would recommend for "real work"?
That is: not just getting SW to install, but to do co-operative SW development.
It wouldn't do exactly harm if it could handle some other kinds of repos too (hg, SVN, ...).
|
|
|
07-06-2014, 12:44 PM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,375
|
You mean which git frontend, right? Slackware includes git.
I like fugitive.vim for vim.
Egit for Eclipse is also not bad.
I'm not aware of git frontends that handle other repository types, and I can't imagine them being any good.
Last edited by dugan; 07-06-2014 at 12:46 PM.
|
|
1 members found this post helpful.
|
07-06-2014, 12:58 PM
|
#3
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Whoa - didn't realize. Thanks.
I'll probablt try out Egit at some point.
Any comments about smartgit/hg?
|
|
|
07-06-2014, 01:33 PM
|
#4
|
LQ Addict
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 24,644
|
git is a general tool, egit and smartgit/hg look specialized. I would rather say you need to check if those tools suit your needs. (for example egit can help you only if you use eclipse). I suggest you to be familiar with git itself not only just with some GUI frontends. Also you can try gitk. Probably you need to check gerrit too.
|
|
|
07-06-2014, 01:49 PM
|
#5
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Quote:
Originally Posted by pan64
git is a general tool, egit and smartgit/hg look specialized. I would rather say you need to check if those tools suit your needs. (for example egit can help you only if you use eclipse). I suggest you to be familiar with git itself not only just with some GUI frontends. Also you can try gitk. Probably you need to check gerrit too.
|
I have mostly used git and git-gui (or git gui these days).
My experience with hg on the other hand is pretty limited.
I just have the itch that I might come across hg and SVN in the future (used "torture svn" however).
I'm interested in Egit, because I use eclipse often - just never tried Egit.
|
|
|
07-06-2014, 02:25 PM
|
#6
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,418
Rep: 
|
mercurial and subversion are indeed included in Slackware as well as git. For eclipse and netbeans see http://slackbuilds.org
|
|
1 members found this post helpful.
|
07-06-2014, 02:36 PM
|
#7
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,861
|
Netbeans contains native support (well, via plugins) for git, svn, and hg.
There are usage patterns in git that don't map to other DVCS usage patterns.
Last edited by Richard Cranium; 07-06-2014 at 02:36 PM.
Reason: Can't spell "via"
|
|
1 members found this post helpful.
|
07-06-2014, 02:40 PM
|
#8
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Quote:
Originally Posted by Didier Spaier
mercurial and subversion are indeed included in Slackware as well as git. For eclipse and netbeans see http://slackbuilds.org
|
Oh, Looks like I don't need to install anything!
Thanks!
|
|
|
07-06-2014, 02:42 PM
|
#9
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Quote:
Originally Posted by Richard Cranium
Netbeans contains native support (well, via plugins) for git, svn, and hg.
There are usage patterns in git that don't map to other DVCS usage patterns.
|
Thanks. At the moment eclipse is closer to my heart, but netbeans might come along later.
|
|
|
07-06-2014, 06:48 PM
|
#10
|
Moderator
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,386
|
Be sure to add git auto-completion to your shell:
For bash...
Code:
cp /usr/doc/git-1.8.4/contrib/completion/git-completion.bash /etc/bash_completion.d/.
Add to /etc/bashrc or ~/.bashrc
source /etc/bash_completion.d/git-completion.bash
Scripts also available for ksh, zsh and tcsh in /usr/doc/git...
Last edited by astrogeek; 07-06-2014 at 06:50 PM.
|
|
|
07-07-2014, 04:26 AM
|
#11
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Quote:
Originally Posted by astrogeek
Be sure to add git auto-completion to your shell:
For bash...
Code:
cp /usr/doc/git-1.8.4/contrib/completion/git-completion.bash /etc/bash_completion.d/.
Add to /etc/bashrc or ~/.bashrc
source /etc/bash_completion.d/git-completion.bash
Scripts also available for ksh, zsh and tcsh in /usr/doc/git...
|
Sounds cool... :-)
|
|
|
07-11-2014, 04:34 PM
|
#12
|
Member
Registered: Apr 2010
Distribution: Slackware
Posts: 497
Rep: 
|
Quote:
Originally Posted by pan64
git is a general tool, egit and smartgit/hg look specialized. I would rather say you need to check if those tools suit your needs. (for example egit can help you only if you use eclipse). I suggest you to be familiar with git itself not only just with some GUI frontends. Also you can try gitk. Probably you need to check gerrit too.
|
I agree, with all those seemingly helpful tools I've always run into issues eventually and gone back to the command line. Btw, you can say "git gui" on the command line and get a graphical tool (try Repository -> Visualize HEAD's history).
|
|
1 members found this post helpful.
|
07-11-2014, 06:37 PM
|
#13
|
Member
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601
Original Poster
Rep:
|
Quote:
Originally Posted by Martinus2u
I agree, with all those seemingly helpful tools I've always run into issues eventually and gone back to the command line. Btw, you can say "git gui" on the command line and get a graphical tool (try Repository -> Visualize HEAD's history).
|
I have mosty used those.
|
|
|
07-11-2014, 08:10 PM
|
#14
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,861
|
Quote:
Originally Posted by Martinus2u
I agree, with all those seemingly helpful tools I've always run into issues eventually and gone back to the command line. Btw, you can say "git gui" on the command line and get a graphical tool (try Repository -> Visualize HEAD's history).
|
It's really too bad that (AFAICT) absolutely NONE of the people that wrote (I will not say "designed") the git command line interface had the faintest idea on how to write a user interface. It looks like they fed a bunch of perl users a load of crack and told them to go at it.
|
|
|
All times are GMT -5. The time now is 03:19 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|