TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

LearnGitBranching now has lessons on git fetch, push, and pull

50 点作者 xxbondsxx超过 11 年前

4 条评论

asciimo超过 11 年前
I really like the approach and the visuals. I almost never think of Git visually and this opens a whole new dimension for me. I&#x27;m looking forward to discover techniques and workflows outside of my everyday patterns. Thank you for sharing this with the world.<p>However, the interface is often confusing. For example, I&#x27;m not sure what to do with the avalanche of dialogs at the beginning. So I just navigated to the earliest &#x27;1&#x27; button and pressed that. Also, the &quot;goal&quot; graph at the beginning of each exercise disappears, and I don&#x27;t know how to recall it. Finally, the goal objectives can&#x27;t be displayed at the same time that the console is active, and &quot;help level&quot; restarts the entire level description. It would be nice if both the goal graph and the list of objectives were both visible during the exercise. (If this is indeed possible, I obviously missed it.)
评论 #6623296 未加载
joeblau超过 11 年前
I beat the main game and now you guys are adding more levels! Argh, I&#x27;m trying to get work done here!
评论 #6622613 未加载
officialjunk超过 11 年前
i feel like my flow is always different than these types of tutorials:<p><pre><code> git checkout master git pull git checkout -b my-working-branch git add &lt;files&gt; git commit -m &quot;some description&quot; git add &lt;files&gt; git commit -m &quot;review comments or other changes&quot; git checkout master git checkout -b my-working-branch-squashed git merge --squash my-working-branch git commit git checkout master git pull git cherry-pick &lt;hash from squashed commit&gt; git push </code></pre> this way i can push a single commit that may have been comprised of multiple commits on my working branch. i haven&#x27;t come across a tutorial that does it this way. am i doing it wrong. this flow works well for me.
评论 #6622810 未加载
评论 #6622975 未加载
rnbrady超过 11 年前
This is totally awesome!