{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

GitHub入门与实践

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

GitHub入门与实践

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

与全世界程序员分享你的代码!

1.代码审查不到位,审查效率低下
2.只有编程者本人能看懂的代码直接被部署至正式环境中
3.因低级代码错误导致BUG频繁出现
4.没有机会和其他人互相交流代码,共享知识
○ 没有一个简单高效、能在一天之内添加多个功能的开发流程
GitHub 为我们提供了解决这些问题的机会和功能。
--------------------------------------------------------

本书旨在指导读者使用GitHub进行高效开发。
1.内容全面,系统讲解GitHub的功能和实用技巧
2.图文直观,一步步演示GitHub的使用方法
3.实战导向,专门搭建实践仓库,邀请读者进行Pull Request 并共同维护
4.包含GitHub的开发流程和辅助工具,适合需要引入GitHub的公司或团队直接使用
Content Description

《GitHub入门与实践》从Git的基本知识和操作方法入手,详细介绍了GitHub的各种功能,GitHub与其他工具或服务的协作,使用GitHub的开发流程以及如何将GitHub引入到企业中。在讲解GitHub的代表功能Pull Request时,本书专门搭建了供各位读者实践的仓库,邀请各位读者进行Pull Request并共同维护。
《GitHub入门与实践》旨在指导各位读者如何在开发现场使用GitHub进行高效开发,适合所有想要使用GitHub进行开发的程序员或团队阅读。
Author Description

大塚弘记,将敏捷软件开发导入开发现场的领军人物,以顾问身份就Web应用的开发及服务指导过多家企业和团队。曾为多家企业和团队导入GitHub,在建立一天之内多次部署的开发体制方面拥有丰富经验。
Catalogue

第1章欢迎来到GitHub的世界1
1.1什么是GitHub2
GitHub公司与octocat2
并不只是Git仓库的托管服务3
GitHub的使用情况3
Column 专栏:GitHub与Git的区别4
1.2使用GitHub会带来哪些变化4
协作形式变化4
在开发者之间引发化学反应的Pull Request5
对特定用户进行评论6
GitHub Flavored Markdown7
Column 专栏:还可以这样写!!7
能看到更多其他团队的软件7
与开源软件相同的开发模式8
1.3社会化编程9
1.4为什么需要社会化编程10
不要闭目塞听,要接触不同的文化10
会写代码的程序员更受青睐11
GitHub最大的特征是“面向人”11
1.5GitHub提供的主要功能12
Git仓库12
Organization12
Issue13
Wiki13
Pull Request13
Column 专栏:GitHub上受到瞩目的软件14
1.6小结14
参考资料14
第2章Git的导入17
2.1诞生背景18
2.2什么是版本管理18
集中型与分散型19
集中型19
分散型19
集中型与分散型哪个更好20
2.3安装21
Mac与Linux21
Windows21
组件的选择22
设置环境变量22
换行符的处理23
Git Bash23
本书所用的环境24
2.4初始设置24
设置姓名和邮箱地址24
提高命令输出的可读性25
2.5小结25
第3章使用GitHub的前期准备27
3.1使用前的准备28
创建账户28
设置头像29
设置SSH Key29
添加公开密钥30
使用社区功能31
3.2实际动手使用31
创建仓库31
Repository name32
Description32
Public、Private32
Initialize this repository with a README32
Add .gitignore33
Add a license33
连接仓库33
README.md33
GitHub Flavored Markdown34
公开代码34
clone已有仓库34
编写代码35
提交36
Column 专栏:公开时的许可协议37
进行push37
3.3小结38
第4章通过实际操作学习Git39
4.1基本操作40
git init——初始化仓库40
git status——查看仓库的状态40
git add——向暂存区中添加文件41
git commit——保存仓库的历史记录42
记述一行提交信息42
记述详细提交信息42
中止提交43
查看提交后的状态43
git log——查看提交日志43
只显示提交信息的第一行44
只显示指定目录、文件的日志44
显示文件的改动45
git diff——查看更改前后的差别45
查看工作树和暂存区的差别45
查看工作树和最新提交的差别46
4.2分支的操作47
git branch——显示分支一览表48
git checkout -b——创建、切换分支48
切换到feature-A分支并进行提交48
切换到master分支49
切换回上一个分支50
特性分支50
主干分支51
git merge——合并分支51
git log --graph——以图表形式查看分支52
4.3更改提交的操作53
git reset——回溯历史版本53
回溯到创建feature-A分支前53
创建fix-B分支54
推进至feature-A分支合并后的状态55
消除冲突56
查看冲突部分并将其解决57
提交解决后的结果57
git commit --amend——修改提交信息58
git rebase -i——压缩历史59
创建feature-C分支59
修正拼写错误60
更改历史61
合并至master分支63
4.4推送至远程仓库63
gitremote add——添加远程仓库64
git push——推送至远程仓库64
推送至master分支64
推送至master以外的分支65
4.5从远程仓库获取65
git clone——获取远程仓库65
获取远程仓库65
获取远程的feature-D分支66
向本地的feature-D分支提交更改67
推送feature-D分支67
git pull——获取最新的远程仓库分支67
4.6帮助大家深入理解Git的资料68
Pro Git68
LearnGitBranching69
tryGit69
4.7小结70
第5章详细解说GitHub的功能71
5.1键盘快捷键72
5.2工具栏73
关于UI73
1LOGO73
2Notifications73
3 搜索窗口73
4Explore73
5Gist74
6Blog74
7Help74
8 头像、用户名74
9 Create a new74
Account settings75
Sign out75
5.3控制面板75
关于UI75
①News Feed76
②Pull Requests76
③Issues76
④Stars76
⑤Broadcast76
⑥Repositories you contribute to76
⑦Your Repositories76
5.4个人信息77
关于UI77
1 用户信息77
2Popular Repositories78
3Repositories contributed to78
4Public contributions78
5Contribution Activity78
6Repositories78
7Public Activity79
5.5仓库80
关于UI80
①用户名(组织名)/仓库名80
②Watch/Star/Fork80
③Code81
④Issue81
⑤Pull Requests81
⑥Wiki82
⑦Pulse82
⑧Graphs82
⑨Network82
⑩Settings82
?SSH clone URL82
?Clone in Desktop82
?Download ZIP83
acommits83
bbranches83
creleases83
dcontributors83
eCompare & review83
fbranch83
gpath84
hFork this project and Create a new file84
ifiles84
文件的相关操作84
Column专栏:通过部分名称搜索文件85
查看差别85
查看分支间的差别85
查看与几天前的差别86
查看与指定日期之间的差别87
5.6Issue87
简洁且表现力丰富的描述方法88
语法高亮89
添加图片90
添加标签以便整理90
添加里程碑以便管理91
Column 专栏:了解贡献时的规则!92
Tasklist语法92
通过提交信息操作Issue93
在相关Issue中显示提交93
Close Issue93
将特定的Issue转换为Pull Request94
5.7Pull Request94
Column 专栏:获取diff格式与patch格式的文件96
Conversation96
Column 专栏:引用评论96
Commits97
Column 专栏:在评论中应用表情98
Files Changed98
5.8Wiki99
Pages100
History101
Column 专栏:在Wiki中显示侧边栏101
5.9Pulse102
active pull requests103
active issue103
commits104
Releases published104
Unresolved Conversations104
5.10Graphs105
Contributors105
Commit Activity1

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book