X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 61978DC148C for ; Wed, 17 Jun 2015 08:41:06 +0000 (UTC) Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id BD24EDC0922 for ; Wed, 17 Jun 2015 08:41:05 +0000 (UTC) Date: Wed, 17 Jun 2015 10:41:01 +0200 From: Natanael Copa To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] user repositories on git.alpinelinux.org moved Message-ID: <20150617104101.776276a0@ncopa-desktop.alpinelinux.org> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-alpine-linux-musl) X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP I have now moved the user repos to be managed by gitolite. If you try git pull or push from your repo you will get an error. You need to change the fetch and push url's for your repo. You can see current remote url with: $ git remote -v origin ssh://git.alpinelinux.org/home/USER/cgit/REPO (fetch) origin ssh://git.alpinelinux.org/home/USER/cgit/REPO (push) The USER is your username and REPO is the name of the repo. To update to new location: $ git remote set-url origin git@git.alpinelinux.org:user/USER/REPO After this you can verify it: $ git remote -v origin ssh://git.alpinelinux.org/home/USER/cgit/REPO (fetch) origin ssh://git.alpinelinux.org/home/USER/cgit/REPO (push) Example, where USER is 'ncopa' and REPO is 'test': ncopa-desktop:~/Projects/test$ git remote -v origin ssh://git.alpinelinux.org/home/ncopa/cgit/test (fetch) origin ssh://git.alpinelinux.org/home/ncopa/cgit/test (push) ncopa-desktop:~/Projects/test$ git remote set-url origin git@git.alpinelinux.org:user/ncopa/test ncopa-desktop:~/Projects/test$ git remote -v origin git@git.alpinelinux.org:user/ncopa/test (fetch) origin git@git.alpinelinux.org:user/ncopa/test (push) After this youshould be able to push/pull again. Thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---