Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
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.
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.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
I'm not much of developer, but I do like too use git to sometimes get the latest revisions of certain software i.e. bug fixes.
I usually manually git clone the repository in my ~/builds folder. Then I browse the source and then configure and install.
Is there a git management tool that will help me see each cloned git repository in my builds directory..? And if so, allow me to checkout, reset & or update the repositories when there are newer revisions available?
I thought about just writing a cron script that updates all of my git repositories manually, but a gui would be nice.
I use git for: git-sources, xen-sources, geany, and many other programs I use, and track. I'd like having a dedicated git folder to manage all my git-clones, i.e. builds.
I am very new with git and I am having a hard time wrapping my mind on how to use revision control, whenever a new update is released with bug fixes and staying current. I'm new to Linux and my programming skills are novice at best, and I dont plan on adding or contributing any source, and or patches as of yet, just want to manage my git-clones to keep current. I have tried gitg, and the app freezes, and I dont know if this tool can manage multiple git repositories at once like I want.
Any suggestions. or advice .. or clarification?
Last edited by manwithaplan; 09-28-2009 at 01:52 AM.
I'm not much of developer, but I do like too use git to sometimes get the latest revisions of certain software i.e. bug fixes.
I usually manually git clone the repository in my ~/builds folder. Then I browse the source and then configure and install.
Is there a git management tool that will help me see each cloned git repository in my builds directory..? And if so, allow me to checkout, reset & or update the repositories when there are newer revisions available?
I thought about just writing a cron script that updates all of my git repositories manually, but a gui would be nice.
I use git for: git-sources, xen-sources, geany, and many other programs I use, and track. I'd like having a dedicated git folder to manage all my git-clones, i.e. builds.
I am very new with git and I am having a hard time wrapping my mind on how to use revision control, whenever a new update is released with bug fixes and staying current. I'm new to Linux and my programming skills are novice at best, and I dont plan on adding or contributing any source, and or patches as of yet, just want to manage my git-clones to keep current. I have tried gitg, and the app freezes, and I dont know if this tool can manage multiple git repositories at once like I want.
Any suggestions. or advice .. or clarification?
I'll admit that I've only being using GIT for about 6 months or so (and loving it), but I've never heard of a graphical tool to manage multiple git repositories. But if all you want to do is just keep your git repositories up to date, you don't need one. All you need to do is put all your git repositories in one folder, then write a little script that 'cd's into each directory in that directory, and runs 'git pull'. Attach that to cron, and you're set for life.
You could probably do it in Perl or bash in under 10 lines.
Thx for the reply ... I figured that... I was looking for something similar to RapidSVN. Where I can manage all my local SVN repositories, and then checkout any updates, and monitor any revisions.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.