From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.devel Subject: Re: git push weird? Date: Tue, 15 Jun 2010 19:54:07 +0200 Message-ID: <878w6gnpvk.fsf@ambire.localdomain> References: <87fx0ozfx1.fsf@ambire.localdomain> <4C17911F.5040506@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1276625375 21521 80.91.229.12 (15 Jun 2010 18:09:35 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 15 Jun 2010 18:09:35 +0000 (UTC) Cc: guile-devel@gnu.org To: Xiangfu Liu Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jun 15 20:09:34 2010 connect(): No such file or directory Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OOaZp-0004DK-Kz for guile-devel@m.gmane.org; Tue, 15 Jun 2010 20:09:33 +0200 Original-Received: from localhost ([127.0.0.1]:42901 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOaNQ-0006zn-An for guile-devel@m.gmane.org; Tue, 15 Jun 2010 13:56:44 -0400 Original-Received: from [140.186.70.92] (port=44331 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOaNG-0006yR-CD for guile-devel@gnu.org; Tue, 15 Jun 2010 13:56:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOaNC-0006zw-DL for guile-devel@gnu.org; Tue, 15 Jun 2010 13:56:31 -0400 Original-Received: from smtp206.alice.it ([82.57.200.102]:43117) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOaNC-0006zi-3e for guile-devel@gnu.org; Tue, 15 Jun 2010 13:56:30 -0400 Original-Received: from ambire.localdomain (95.244.64.180) by smtp206.alice.it (8.5.124.05) id 4C0E61D500730EBC; Tue, 15 Jun 2010 19:56:23 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.69) (envelope-from ) id 1OOaKt-0005Yr-Ow; Tue, 15 Jun 2010 19:54:07 +0200 In-Reply-To: <4C17911F.5040506@gmail.com> (Xiangfu Liu's message of "Tue, 15 Jun 2010 22:41:35 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:10484 Archived-At: () Xiangfu Liu () Tue, 15 Jun 2010 22:41:35 +0800 git is offline version control. so if you committed in local several times, when you git push. it will push all of your committed to server. hopt this can help. Thanks. I think i should have done a "git rebase" prior to "git push" in order to isolate the one commit that i wanted to share. In the meanwhile, i have also done: $ git push -v origin ttn/misc-maint Pushing to ssh://ttn@git.sv.gnu.org/srv/git/guile.git Enter passphrase for key '/home/ttn/.ssh/sv':=20 Total 0 (delta 0), reused 0 (delta 0) To ssh://ttn@git.sv.gnu.org/srv/git/guile.git * [new branch] ttn/misc-maint -> ttn/misc-maint updating local tracking ref 'refs/remotes/origin/ttn/misc-maint' I think it is ok for the branch =E2=80=98ttn/misc-maint=E2=80=99 to have ma= ny different commits. So now i would like to undo the damage on "master". I think only a project administrator is able to do that, however... thi