From users-return-5293-daniel=haxx.se@subversion.apache.org Mon Oct 11 13:26:39 2010 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on giant.haxx.se X-Spam-Level: X-Spam-Status: No, score=-1.5 required=3.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID,T_RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by giant.haxx.se (8.14.3/8.14.3/Debian-9.1) with SMTP id o9BBQb2N032280 for ; Mon, 11 Oct 2010 13:26:38 +0200 Received: (qmail 85383 invoked by uid 500); 11 Oct 2010 11:26:26 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 85376 invoked by uid 99); 11 Oct 2010 11:26:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Oct 2010 11:26:25 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS Received-SPF: pass (nike.apache.org: domain of nkadel@gmail.com designates 209.85.161.171 as permitted sender) Received: from [209.85.161.171] (HELO mail-gx0-f171.google.com) (209.85.161.171) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Oct 2010 11:26:18 +0000 Received: by gxk21 with SMTP id 21so290317gxk.16 for ; Mon, 11 Oct 2010 04:25:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=m3cJ54lupu+oLox2mOIa1aAxLsbiLjsg2AtjOw4Diww=; b=LgaryrcY64alBTmHBeIy3fwR2M4lOzkCLZbR0wPyjacMQ9i1smarKfDHVL+UqVe/yB hARpVHVHB++oUQmanzQ8qtK9gZif6WYg4ItlykUAm91MMCj8oBQEYI8NQqEP5DPcrhoe rSMnCDZI2Z2RqfqQWmpeatkjOjqPVLdOChz8I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=b1q4OGkF46JhYF3U1J938xuHnhjOy0IFqIK+l5icTZY2Ii14rKn/0azpuKWBDZWsbr +KiiNYk0jFxutnDH6UJFRovZq2oqXU2aCKPQHaGnTZLADsWTRGDogbByNaIm53NFWX0G WI7sSHIDVv4SmexjWkvlNmz0O+V5QZD44WVLc= MIME-Version: 1.0 Received: by 10.236.105.133 with SMTP id k5mr11377532yhg.20.1286796357821; Mon, 11 Oct 2010 04:25:57 -0700 (PDT) Received: by 10.220.128.197 with HTTP; Mon, 11 Oct 2010 04:25:57 -0700 (PDT) In-Reply-To: <4CB0A5DD.9080002@frontier.com> References: <4CB0A5DD.9080002@frontier.com> Date: Mon, 11 Oct 2010 07:25:57 -0400 Message-ID: Subject: Re: some confusion about subversion From: Nico Kadel-Garcia To: Richard England Cc: =?UTF-8?B?6IKW5pmX?= , users@subversion.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org X-Greylist: Sender passed SPF test, not delayed by milter-greylist-4.3.5 (giant.haxx.se [80.67.6.50]); Mon, 11 Oct 2010 13:26:39 +0200 (CEST) X-Friend: Nope On Sat, Oct 9, 2010 at 1:26 PM, Richard England wr= ote: > On 10/09/2010 09:23 AM, =E8=82=96=E6=99=97 wrote: > > I am just new to subversion and encountered some confusion. > I have set up a svn server on my ubuntu/linux. > After creating an account called "test" under /var/svn(using svnadmin cre= ate > /var/svn/test), I checked out the=C2=A0repository under "/home" directory= . > And all these went smoothly until when I tried to add some new files to t= he > repository.... > When I added some files using "svn add filename"=C2=A0and checked the fil= es in > the=C2=A0repository(/var/svn/test), I didn't find any filename that match= ed the > files I have just added. > So I wonder where my uploaded file goes. > > To me it=C2=A0 was unclear whether you did a "svn commit" after the "svn = add > filename"=C2=A0=C2=A0 Until the commit, your add was only done to the loc= al working > copy. > > ~~R It's also possible to to "svn add svn://hostname/reponame/trunk/filename.txt", or whatever the URL would be on the Subversion server. In that case, it won't appear locally until you do an "svn update" in the local working repository.