[git-users] Re: untracked files not shown when using 'git status'

2015-11-30 Thread Kurt Vermeiren
I would agree with Matthew on this. I understand the rationale to not show the files because of the possible very big directories... but the documentation clearly states "directories and files" On Friday, 27 November 2015 17:16:30 UTC+1, Kurt Vermeiren wrote: > > In our project we have 4

Re: [git-users] Create a new repo from a branch in another repo

2015-11-30 Thread Konstantin Khomoutov
On Mon, 30 Nov 2015 07:52:19 -0800 (PST) Anthony Hunter wrote: > I'm new to git and looking into its usage and am responsible for the > teams that will be using the repos. > > As development goes on within a repo and time passes, the repo will > start to get large just do to

Re: [git-users] Re: Where to start coding?

2015-11-30 Thread amey jain
Hi Konstantin Khomoutov, Thanks that you wrote here. Yes that's right that I am new to all of it. Actually I want to go to GSoC and for that I started contributing to Open source. I am already running Ubuntu and subscribed to the mailing list of git to. I will for sure find some easy projects

Re: [git-users] Create a new repo from a branch in another repo

2015-11-30 Thread Anthony Hunter
Yes, my concern is with the eventual size of the repo. The repo will become larger then 1gig and this will take a long time to clone. Not so much concerned with "large files" jut the overall size of the repo. Can you expand more on the usage of the "--reference" option? Thanks. > -- You

Re: [git-users] Re: Where to start coding?

2015-11-30 Thread Konstantin Khomoutov
On Sun, 29 Nov 2015 01:54:57 -0800 (PST) amey jain wrote: > Thanks for your reply. I was working on git-scm. I have the clone of > its repository. I will sure read the complete docs. I am in beginning > of Open source software. Actually I wanted to know whether there are >

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread justrajdeep
Hi That wont push it to the branch. On Monday, November 30, 2015 at 3:12:06 PM UTC+5:30, Magnus Therning wrote: > > On Sat, Nov 28, 2015 at 06:48:35AM -0800, justrajdeep wrote: > > Hi > > > > I want to push my entire local repo(present only with me) to a > > shared git repo as a branch in

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread Konstantin Khomoutov
On Mon, 30 Nov 2015 21:23:24 +0530 rajdeep mondal wrote: > I tried something like > > git push local-remote -u 'refs/*:refs/$TREE_BRANCH/*' > > it did not work as expected. I wonder what was expected then. To me, your invocation looks strange at best. Can you try to

Re: [git-users] Re: untracked files not shown when using 'git status'

2015-11-30 Thread Konstantin Khomoutov
On Mon, 30 Nov 2015 02:00:02 -0800 (PST) Kurt Vermeiren wrote: > I would agree with Matthew on this. I understand the rationale to not > show the files because of the possible very big directories... but > the documentation clearly states "directories and files" I don't. Not

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread Konstantin Khomoutov
On Sat, 28 Nov 2015 06:48:35 -0800 (PST) justrajdeep wrote: > I want to push my entire local repo(present only with me) to a shared > git repo as a branch in that. > > I can do something like > > git remote add local-remote $PATH_TO_REPO_LOCATION > git push local-remote

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread rajdeep mondal
Hi I tried something like git push local-remote -u 'refs/*:refs/$TREE_BRANCH/*' it did not work as expected. On Mon, Nov 30, 2015 at 9:21 PM, Konstantin Khomoutov < flatw...@users.sourceforge.net> wrote: > On Sat, 28 Nov 2015 06:48:35 -0800 (PST) > justrajdeep wrote:

[git-users] Create a new repo from a branch in another repo

2015-11-30 Thread Anthony Hunter
I'm new to git and looking into its usage and am responsible for the teams that will be using the repos. As development goes on within a repo and time passes, the repo will start to get large just do to the number of commits. Is there a way that for example, as a release completes, I could

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread rajdeep mondal
Hi 1. i have repos: A with branches A1, A2, A3 B with branches B1, B2, B3 etc 2. i want to push these 2 independent repo to a central repo MY_REPO as branch A and branch B 3. The A1, A2, A3 are subbranches of branch A 4. B1, B2. B3 are subbranches of the branch B - rajdeep

Re: [git-users] Re: Where to start coding?

2015-11-30 Thread Konstantin Khomoutov
On Mon, 30 Nov 2015 09:06:29 -0800 (PST) amey jain wrote: > Thanks that you wrote here. Yes that's right that I am new to all of > it. Actually I want to go to GSoC and for that I started contributing > to Open source. I am already running Ubuntu and subscribed to the >

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread Konstantin Khomoutov
On Mon, 30 Nov 2015 23:15:32 +0530 rajdeep mondal wrote: > 1. i have repos: > A with branches A1, A2, A3 > B with branches B1, B2, B3 etc > > 2. i want to push these 2 independent repo to a central repo MY_REPO > > as branch A and branch B > > > 3. The

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread rajdeep mondal
Thanks. I will try it out. On Tue, Dec 1, 2015 at 1:08 AM, Konstantin Khomoutov < flatw...@users.sourceforge.net> wrote: > On Mon, 30 Nov 2015 23:15:32 +0530 > rajdeep mondal wrote: > > > 1. i have repos: > > A with branches A1, A2, A3 > > B with branches B1,

Re: [git-users] how to push indepedent repos to individual branches in remote in git?

2015-11-30 Thread Magnus Therning
On Sat, Nov 28, 2015 at 06:48:35AM -0800, justrajdeep wrote: > Hi > > I want to push my entire local repo(present only with me) to a > shared git repo as a branch in that. > > I can do something like > > git remote add local-remote $PATH_TO_REPO_LOCATION > git push local-remote -u