Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion Git migration

Received: by 10.52.89.73 with SMTP id bm9mr1048445vdb.3.1336139423356;
        Fri, 04 May 2012 06:50:23 -0700 (PDT)
X-BeenThere: django-users@googlegroups.com
Received: by 10.220.209.9 with SMTP id ge9ls866475vcb.9.gmail; Fri, 04 May
 2012 06:49:59 -0700 (PDT)
Received: by 10.52.92.130 with SMTP id cm2mr8188869vdb.2.1336139399548;
        Fri, 04 May 2012 06:49:59 -0700 (PDT)
Received: by 10.52.92.130 with SMTP id cm2mr8188845vdb.2.1336139399452;
        Fri, 04 May 2012 06:49:59 -0700 (PDT)
Return-Path: <eugenio.mina...@gmail.com>
Received: from mail-vb0-f43.google.com (mail-vb0-f43.google.com [209.85.212.43])
        by gmr-mx.google.com with ESMTPS id w20si815864vde.2.2012.05.04.06.49.59
        (version=TLSv1/SSLv3 cipher=OTHER);
        Fri, 04 May 2012 06:49:59 -0700 (PDT)
Received-SPF: pass (google.com: domain of eugenio.mina...@gmail.com designates 209.85.212.43 as permitted sender) client-ip=209.85.212.43;
Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of eugenio.mina...@gmail.com designates 209.85.212.43 as permitted sender) smtp.mail=eugenio.mina...@gmail.com; dkim=pass header...@gmail.com
Received: by vbbfq11 with SMTP id fq11so4501601vbb.16
        for <django-users@googlegroups.com>; Fri, 04 May 2012 06:49:59 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=mime-version:in-reply-to:references:from:date:message-id:subject:to
         :content-type;
        bh=75NBlMc2Rnh8+/yy47mvFK7c7QEEXi7Gqm0BKFrLLJc=;
        b=EqcjLxsMJ1bnl0yflq6Wo01SFjGk62Mbxs8NhKUH8SyDZwTjqaWUBLEX3ZZynpQqJg
         h2ZJEIBuu+4g7aRTzQAceCR35NuK+ZPgLjED+irq1Bf525yK4tCRvxiv7soRQrRTOai6
         XR6Vw9gN2UUR8m5mrWhAK8qqfcNuR0SGPudMDmy86vTwsw9oMWi+TdMxjlAhjil3l0VT
         pAsLwSksqfArOyby/WSeLhG5Yy+PlhtdukFx1vuLtwAwGn+mHLLxXLXeoDtqrVqL9OZR
         MPYRiGmXgxLv4EZUyw3QDdAodPQ3EUd14pJZ9qUGDmBhSZP7/RAN89VCoQiDzg1rl2Ta
         9e5Q==
Received: by 10.220.238.211 with SMTP id kt19mr3159428vcb.46.1336139399330;
 Fri, 04 May 2012 06:49:59 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.220.178.11 with HTTP; Fri, 4 May 2012 06:49:39 -0700 (PDT)
In-Reply-To: <5ACAD39C-3C95-41B8-99E8-D0343D0B3...@gmail.com>
References: <C6B10563-4B1A-4834-B65A-D12122526...@gmail.com>
 <CAE7pUuDUWnQTesuLEq6b=pkCXue2CTyRcuYM=OCQCOVXc9+...@mail.gmail.com> <5ACAD39C-3C95-41B8-99E8-D0343D0B3...@gmail.com>
From: Eugenio Minardi <eugenio.mina...@gmail.com>
Date: Fri, 4 May 2012 15:49:39 +0200
Message-ID: <CABahsz-sR9d9t_edD7K-Fo9AEtn1VizXwsxoSf7kzO+nU_3...@mail.gmail.com>
Subject: Re: Git migration
To: django-users@googlegroups.com
Content-Type: multipart/alternative; boundary=14dae9cfcba8447b5f04bf363222

--14dae9cfcba8447b5f04bf363222
Content-Type: text/plain; charset=ISO-8859-1

Hi,

to be sure that all your code is into the repo try with git status and
check if all the files are tracked.
Then with git add NAME you can track a single file,  a folder or a set of
file and folder. With git add . you can track all the files.

Eugenio

On Fri, May 4, 2012 at 3:46 PM, Stanwin Siow <stanwin.kts...@gmail.com>wrote:

> Thanks everyone for the replies.
>
> Reason why i'm asking was because after the migration it seemed that my
> django registration module was not picked up.
>
> Hence login and registration are now unavailable.
>
> Was looking at all ways to resolve it.
>
> Shall dig deeper.
>
> Thanks!
>
>
>  Best Regards,
>
> Stanwin Siow
>
>
>
> On May 4, 2012, at 11:55 AM, Rivsen wrote:
>
> hi Stanwin,
>
> I think git is tool to manage your code, no matter it is python or php or
> etc.
>
> Migrate code from svn to git, you just make sure your svn commit log is
> right in git repo.
>
> And if you just want use git in your development, don't care the remote is
> svn or git, you can try git-svn, this is a great tool for git clone and
> manage svn repo!
>
> Best regards,
>
> Rivsen
>
> 2012/5/4 Stanwin Siow <stanwin.kts...@gmail.com>
>
>> Hello there,
>>
>> Just wanted to enquire about a project that i have been working on.
>>
>> It was previously hosted on an svn repository however my supervisor then
>> decided to migrate it to GIT.
>>
>> my question here would be do i need to reinstall the external modules
>> that i used in my django project like django-registration and django-paypal
>> in GIT?
>>
>> Or would the functionalities be the same?
>>
>> I'm asking this is because i discovered a break in the program after the
>> migration.
>>
>> Any help or advice is appreciated.
>>
>> Thanks in advance!
>>
>>
>>
>>  Best Regards,
>>
>> Stanwin Siow
>>
>>
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

--14dae9cfcba8447b5f04bf363222
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Hi,<div><br></div><div>to be sure that all your code is into the repo try w=
ith git status and check if all the files are tracked.=A0</div><div>Then wi=
th git add NAME you can track a single file, =A0a folder or a set of file a=
nd folder. With git add . you can track all the files.</div>

<div><br></div><div>Eugenio<br><br><div class=3D"gmail_quote">On Fri, May 4=
, 2012 at 3:46 PM, Stanwin Siow <span dir=3D"ltr">&lt;<a href=3D"mailto:sta=
nwin.kts...@gmail.com" target=3D"_blank">stanwin.kts...@gmail.com</a>&gt;</=
span> wrote:<br>

<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex"><div style=3D"word-wrap:break-word">Thanks e=
veryone for the replies.<div><br></div><div>Reason why i&#39;m asking was b=
ecause after the migration it seemed that my django registration module was=
 not picked up.</div>

<div><br></div><div>Hence login and registration are now unavailable.</div>=
<div><br></div><div>Was looking at all ways to resolve it.=A0</div><div><br=
></div><div>Shall dig deeper.</div><div><br></div><div>Thanks!</div><div>

<br></div><div><br><div>
<span style=3D"text-indent:0px;letter-spacing:normal;font-variant:normal;te=
xt-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:norm=
al;border-collapse:separate;text-transform:none;font-size:medium;white-spac=
e:normal;font-family:Helvetica;word-spacing:0px"><div>

Best Regards,</div><div><br></div><div>Stanwin Siow</div><div><br></div></s=
pan><br>
</div><div><div class=3D"h5">
<br><div><div>On May 4, 2012, at 11:55 AM, Rivsen wrote:</div><br><blockquo=
te type=3D"cite">hi Stanwin,<div><br></div><div>I think git is tool to mana=
ge your code, no matter it is python or php or etc.</div><div><br></div>

<div>Migrate code from svn to git, you just make sure your svn commit log i=
s right in git repo.</div>
<div><br></div><div>And if you just want use git in your development, don&#=
39;t care the remote is svn or git, you can try git-svn, this is a great to=
ol for git clone and manage svn repo!</div><div><br></div><div>Best regards=
,</div>


<div><br></div><div>Rivsen</div><div><br><div class=3D"gmail_quote">2012/5/=
4 Stanwin Siow <span dir=3D"ltr">&lt;<a href=3D"mailto:stanwin.ktsiow@gmail=
.com" target=3D"_blank">stanwin.kts...@gmail.com</a>&gt;</span><br><blockqu=
ote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc s=
olid;padding-left:1ex">


<div style=3D"word-wrap:break-word">Hello there,<div><br></div><div>Just wa=
nted to enquire about a project that i have been working on.</div><div><br>=
</div><div>It was previously hosted on an svn repository however my supervi=
sor then decided to migrate it to GIT.</div>


<div><br></div><div>my question here would be do i need to reinstall the ex=
ternal modules that i used in my django project like django-registration an=
d django-paypal in GIT?</div><div><br></div><div>Or would the functionaliti=
es be the same?</div>


<div><br></div><div>I&#39;m asking this is because i discovered a break in =
the program after the migration.</div><div><br></div><div>Any help or advic=
e is appreciated.</div><div><br></div><div>Thanks in advance!</div><div>


<br></div><div><br></div><div><br><div>
<span style=3D"text-indent:0px;letter-spacing:normal;font-variant:normal;te=
xt-align:-webkit-auto;font-style:normal;font-weight:normal;line-height:norm=
al;border-collapse:separate;text-transform:none;font-size:medium;white-spac=
e:normal;font-family:Helvetica;word-spacing:0px"><div>


Best Regards,</div><div><br></div><div>Stanwin Siow</div><span><font color=
=3D"#888888"><div><br></div></font></span></span><span><font color=3D"#8888=
88"><br>
</font></span></div><span><font color=3D"#888888">
<br></font></span></div></div><span><font color=3D"#888888"><div><br></div>

-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Django users&quot; group.<br>
To post to this group, send email to <a href=3D"mailto:django-users@googleg=
roups.com" target=3D"_blank">django-users@googlegroups.com</a>.<br>
To unsubscribe from this group, send email to <a href=3D"mailto:django-user=
s%2Bunsubscribe@googlegroups.com" target=3D"_blank">django-users+unsubscrib=
e@googlegroups.com</a>.<br>

For more options, visit this group at <a href=3D"http://groups.google.com/g=
roup/django-users?hl=3Den" target=3D"_blank">http://groups.google.com/group=
/django-users?hl=3Den</a>.<br>


</font></span></blockquote></div><br></div><div><br></div>

-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Django users&quot; group.<br>
To post to this group, send email to <a href=3D"mailto:django-users@googleg=
roups.com" target=3D"_blank">django-users@googlegroups.com</a>.<br>
To unsubscribe from this group, send email to <a href=3D"mailto:django-user=
s+unsubscribe@googlegroups.com" target=3D"_blank">django-users+unsubscribe@=
googlegroups.com</a>.<br>

For more options, visit this group at <a href=3D"http://groups.google.com/g=
roup/django-users?hl=3Den" target=3D"_blank">http://groups.google.com/group=
/django-users?hl=3Den</a>.<br>


</blockquote></div><br></div></div></div></div><div class=3D"HOEnZb"><div c=
lass=3D"h5">

<p></p>

-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Django users&quot; group.<br>
To post to this group, send email to <a href=3D"mailto:django-users@googleg=
roups.com" target=3D"_blank">django-users@googlegroups.com</a>.<br>
To unsubscribe from this group, send email to <a href=3D"mailto:django-user=
s%2Bunsubscribe@googlegroups.com" target=3D"_blank">django-users+unsubscrib=
e@googlegroups.com</a>.<br>

For more options, visit this group at <a href=3D"http://groups.google.com/g=
roup/django-users?hl=3Den" target=3D"_blank">http://groups.google.com/group=
/django-users?hl=3Den</a>.<br>


</div></div></blockquote></div><br></div>

--14dae9cfcba8447b5f04bf363222--