用于进行修改的 git 工作流程,您永远不会将其推回原点
我正在使用 PhoneGap 构建一个 iPhone 应用程序,它有一个 Git 存储库。 我想在我自己的 Git 存储库中跟踪对 PhoneGap 代码的更改(主要是向 www 目录添加文件),同时能够从 PhoneGap 中提取最新、最好的内容。
这就是分支的目的吗?
我如何让它忽略我删除了不需要的文件夹(例如 android/ 和 blackberry/ 文件夹)的事实?
I'm building an iPhone app with PhoneGap, which has a Git repos. I'd like to keep track of my changes to the PhoneGap code (mainly, adding files to the www directory) in my own Git repository, while being able to pull the latest and greatest out of PhoneGap.
Is this what a branch is intended for?
How would I get it to ignore the fact that I deleted folders I don't need, like the android/ and blackberry/ folder?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这正是分支的用途。 您应该在您的分支上工作,并从主分支中提取更改,可能使用
--rebase
。This is exactly what a branch is for. You should work on your branch, and pull changes from the main branch, possibly using
--rebase
.