LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-06-2014, 12:37 PM   #1
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Rep: Reputation: 46
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, ...).
 
Old 07-06-2014, 12:44 PM   #2
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,219

Rep: Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309Reputation: 5309
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.
Old 07-06-2014, 12:58 PM   #3
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Slackware includes git.
Whoa - didn't realize. Thanks.
I'll probablt try out Egit at some point.

Any comments about smartgit/hg?
 
Old 07-06-2014, 01:33 PM   #4
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,790

Rep: Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304Reputation: 7304
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.
 
Old 07-06-2014, 01:49 PM   #5
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by pan64 View Post
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.
 
Old 07-06-2014, 02:25 PM   #6
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
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.
Old 07-06-2014, 02:36 PM   #7
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
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.
Old 07-06-2014, 02:40 PM   #8
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by Didier Spaier View Post
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!
 
Old 07-06-2014, 02:42 PM   #9
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by Richard Cranium View Post
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.
 
Old 07-06-2014, 06:48 PM   #10
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,263
Blog Entries: 24

Rep: Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194
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.
 
Old 07-07-2014, 04:26 AM   #11
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by astrogeek View Post
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... :-)
 
Old 07-11-2014, 04:34 PM   #12
Martinus2u
Member
 
Registered: Apr 2010
Distribution: Slackware
Posts: 497

Rep: Reputation: 119Reputation: 119
Quote:
Originally Posted by pan64 View Post
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.
Old 07-11-2014, 06:37 PM   #13
turboscrew
Member
 
Registered: Apr 2009
Location: Nokia (town), Finland
Distribution: Mint, Debian
Posts: 601

Original Poster
Rep: Reputation: 46
Quote:
Originally Posted by Martinus2u View Post
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.
 
Old 07-11-2014, 08:10 PM   #14
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Quote:
Originally Posted by Martinus2u View Post
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.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Debian Wheezy Local Git Server With Git Lite Workflow LXer Syndicated Linux News 0 01-20-2013 01:30 PM
[SOLVED] git push in a git-init without --bare option? xeon123 Linux - Newbie 1 06-27-2011 03:44 AM
[SOLVED] Can't install Git repo (I don't git git ) Nemus Linux - Software 3 05-20-2011 02:09 PM
SBo-git - slackbuilds.org on git (with patches for current) ponce Slackware 47 03-12-2011 05:12 AM
inconsistency issue of git-clone ***/git/mesa/drm with the existing kernel source centguy Linux - Desktop 2 10-08-2008 10:36 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:56 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