From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24641 invoked by alias); 14 Nov 2014 23:40:19 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 19393 Received: (qmail 16860 invoked from network); 14 Nov 2014 23:40:17 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=c/scmq5g c=1 sm=1 tr=0 a=FT8er97JFeGWzr5TCOCO5w==:117 a=kj9zAlcOel0A:10 a=q2GGsy2AAAAA:8 a=oR5dmqMzAAAA:8 a=-9mUelKeXuEA:10 a=nJfFUYvF2NFccWrUu7EA:9 a=CjuIK1q_8ugA:10 From: Bart Schaefer Message-id: <141114154020.ZM6442@torch.brasslantern.com> Date: Fri, 14 Nov 2014 15:40:20 -0800 In-reply-to: <20141114164658.GA6418@Persephone> Comments: In reply to Nathan Schwarz "Re: git adventures" (Nov 14, 5:46pm) References: <54663E52.9040406@eastlink.ca> <20141114164658.GA6418@Persephone> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Nathan Schwarz , zsh-users@zsh.org Subject: Re: git adventures MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Nov 14, 5:46pm, Nathan Schwarz wrote: } } > I'VE LEARNED ABOUT 'stage', BUT WHAT IS 'stash'? } > HOW DO I commit/stash/stage THAT ONE FILE SO AS TO PROCEED? CAN WE TELL GIT } > TO JUST NOT WORRY ABOUT THAT FILE--LEAVE IT BE, BUT PULL EVERYTHING ELSE? } > THAT CHANGED FILE IS OBVIOUSLY ONLY OF TEMPORARY VALUE. } `git stash $file` stashes changes as another form than a commit. Hmm, "git stash $file" doesn't work for me -- it wants a keyword such as "save" in the location where you have $file, and the only way to stash selectively is with "git stash save --patch". I don't see any mention of stash accepting a file name in "man git-stash".