[git-users] How to subtree split the parent project without the added subprojects?

2013-08-08 Thread Gabriel
Hi all, I am trying to use subtree instead of submodules to manage a project, but I don't know how to send the parent project alone. Let me explain my self. We have a project split in a parent repository and some plug-in repositories. One can use the parent project alone or adding plugins with

[git-users] Some advice please, automating a repetitive process.

2013-08-08 Thread Alex Lewis
Hi, I'm using git-svn to track an SVN server so my *master* branch is a mirror of the SVN trunk. I have a *develop* branch of *master* which is where I do my work (or branches from *develop*). Some initial commits to the *develop* branch are setting version files to "snapshots" rather than us

[git-users] Re: GIT Server On Ubuntu

2013-08-08 Thread Thomas Ferris Nicolaisen
On Thursday, August 8, 2013 6:27:56 AM UTC+2, Surendra Patel wrote: > Hello Support, > > I like GIT very much . I also deployed and install GIT on ubuntu > server. but tell me why I am unable to pull and push request .please tell > me step by step of GIT server installation. > > 1. Figure out

Re: [git-users] Some advice please, automating a repetitive process.

2013-08-08 Thread Sam Roberts
/bin/sh script with no bash specifics... IMO. set -e at top to make it bail if any command errors. you can even call it "git-do-my-thing" and install in your path, so its possible to call "git do-my-thing" from the command line, it will look like a git command (obviously, use a better name.. :-).