-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用 GitHub 的正确姿势 #4
Comments
Github issue template
延伸阅读: |
GitHub 是如何统计 contributions 的?延伸阅读: |
GitHub 项目如何创建 tag?查看 tag:
创建 tag
对某次 commit 打 tag
创建带有说明的 tag
查看 tag 信息
删除本地仓库 tag
推送本地 tag 到远程
删除远程仓库 tag
延伸阅读: |
如何在github上下载单个文件夹?
|
Github 上怎样把新 commits 使用在自己的 fork 上?方式一: 命令行操作1、配置上游项目地址。即将你 fork 的项目的地址给配置到自己的项目上。比如我 fork 了一个项目,原项目是 wabish/fork-demo.git,我的项目就是 cobish/fork-demo.git。使用以下命令来配置。
然后可以查看一下配置状况,很好,上游项目的地址已经被加进来了。
2、获取上游项目更新。使用 fetch 命令更新,fetch 后会被存储在一个本地分支 upstream/master 上。
3、合并到本地分支。切换到 master 分支,合并 upstream/master 分支。
4、提交推送。根据自己情况提交推送自己项目的代码。
由于项目已经配置了上游项目的地址,所以如果 fork 的项目再次更新,重复步骤 2、3、4即可。 方式二:直接在 GitHub 官网上操作
|
关联 issue
The text was updated successfully, but these errors were encountered: