Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.kamp.net!newsfeed.kamp.net!feeder1.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.83.MISMATCH!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.036 X-Spam-Evidence: '*H*': 0.93; '*S*': 0.00; 'subject:ANN': 0.07; 'git': 0.09; 'subject:Python3': 0.09; 'url:github': 0.09; 'cc:addr :python-list': 0.11; 'jan': 0.12; 'changes': 0.15; 'fine.': 0.16; 'received:192.168.1.4': 0.16; 'subject:python': 0.16; 'thanks,': 0.17; 'wrote:': 0.18; 'commit': 0.19; 'thu,': 0.19; 'work,': 0.20; 'cc:addr:python.org': 0.22; 'merge': 0.24; 'fairly': 0.24; 'cc:2**0': 0.24; 'push': 0.26; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'feature': 0.29; '[1]': 0.29; 'am,': 0.29; "doesn't": 0.30; '[2]': 0.30; "skip:' 10": 0.31; 'branches': 0.31; 'plain': 0.33; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'done': 0.36; 'charset:us-ascii': 0.36; 'similar': 0.36; 'message-id:@gmail.com': 0.38; 'branch': 0.38; 'whatever': 0.38; 'files': 0.38; 'pm,': 0.38; 'flow': 0.39; 'entire': 0.61; "you're": 0.61; 'back': 0.62; 'header:Message- Id:1': 0.63; 'real': 0.63; 'decided': 0.64; 'laptop': 0.65; 'to:addr:gmail.com': 0.65; 'between': 0.67; 'lose': 0.68; '2015': 0.84; 'url:posts': 0.84; 'from.': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=Iw1tm8SYlpKbEi3IdyXTzMe1boB5QjxhqzYt9tjfuiM=; b=b7CwbD8jpqZqiCk+wlkokwbfKv5ZnidEjhHhe10FJMdtjQ7xbngA5bDtt/IJ+Zx5hg 4yVlpxgbohpAxr2KB29QQu99pUcUEDsh93RqGkpibOP5oCjUyW1Ad9Z+A//+lr+3L3dN ukfkZBHwpfOp3DZlJC8xlm3ZuOzVdBY0rHb3Gp5xgjJhIo1CfmbADQfQycITulLBaCyf UjYWlX33XsZ2h/KT7Ms/xtjE+C1mrUWF6ekZM5Tn7ejGDfDU+5zApKLtjG6LpoR3dFPV iSwBLQOOoPEKFEZEFR0TaLd7+OuRtmtbDBopLHWLd/AazCNnCIogyKtdMV0KRopxjRni febw== X-Received: by 10.140.86.75 with SMTP id o69mr16053399qgd.98.1422523764779; Thu, 29 Jan 2015 01:29:24 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) Subject: Re: ANN: unpyc3 - a python bytecode decompiler for Python3 From: Cem Karan In-Reply-To: Date: Thu, 29 Jan 2015 04:29:29 -0500 Content-Transfer-Encoding: quoted-printable References: <3dcc2862-bdd6-4a2a-8edb-1a9d51df26b3@googlegroups.com> To: Chris Angelico X-Mailer: Apple Mail (2.1510) Cc: "comp.lang.python" X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1422523773 news.xs4all.nl 2877 [2001:888:2000:d::a6]:38944 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:84811 On Jan 28, 2015, at 5:02 PM, Chris Angelico wrote: > On Thu, Jan 29, 2015 at 8:52 AM, Devin Jeanpierre > wrote: >> Git doesn't help if you lose your files in between commits, or if you >> lose the entire directory between pushes. >=20 > So you commit often and push immediately. Solved. >=20 > ChrisA Just to expand on what Chris is saying, learn to use branches. I use = git flow ([1][2]), but you don't need it, plain old branches are fine. = Then you can have a feature branch like 'Joes_current', or something = similar which you and only you push/pull from. Whenever you're done = with it, you can merge the changes back into whatever you & your group = see as the real branch. That is the model I use at work, and it works = fairly well, and its saved me once already when the laptop I was working = on decided to die on me. Thanks, Cem Karan [1] http://nvie.com/posts/a-successful-git-branching-model/ [2] https://github.com/nvie/gitflow=