Questions tagged «git-push»

将更改从本地Git存储库推送到远程

8
git中是否有办法获取给定提交的推送日期?
我想知道是否有一种方法可以查看与git日志中的每个提交相关的推送日期。如果这是不可能的,那么有一种方法可以在一定的推动下查看所有提交。 我编写了一个程序,该程序需要跟踪提交时的提交。因为git日志是按提交日期而不是推送日期排序的,所以我看不到最新推送的提交。例如,如果用户在推送到主数据库之前2天提交到其本地存储库,则该提交将被放置在主存储库日志中其他提交的2天之后。
91 git  github  git-push 

2
git push.default = current和push.default = upstream有什么区别?
git-config的手册页列出了push.default的以下选项: nothing - do not push anything. matching - push all matching branches. All branches having the same name in both ends are considered to be matching. This is the default. upstream - push the current branch to its upstream branch. tracking - deprecated synonym for upstream. current - push …


4
Git说本地分支位于远程分支后面,但不是
场景: 我做了一个新的分支 骇客 提交 推它 黑客更多 再次提交 尝试再次推动 Git回应: 由于当前分支的尖端位于其远程对应的后面,因此更新被拒绝。等等 我是该分支上唯一的黑客-没有人在触摸它。远程分支实际上位于本地分支之后。我根本不用拉 (如果我确实拉,Git会报告两者之间的冲突,并迫使我将分支合并到自身中) 为什么这(可能)发生?我该如何诊断/修复它? 明确地说,我不在任何地方分支,也没有其他人在努力: Remote: Commit A -------- Commit B Local: Commit A -------- Commit B -------- Commit C C是B的直接延续,不涉及分支。但是git认为C是A的一个分支: Remote: Commit A -------- Commit B ------- Commit C / Local: Commit A -------- Commit B 不是; 这是B的直接延续。
82 git  git-push 

4
如何将只读git克隆从github转换为分支
我不时遇到这个问题。 假设我确实遵循以下步骤来阅读Rails的源代码,因为我遇到了一些问题。 git clone git://github.com/rails/rails.git 在研究过程中,我测试了一些东西,现在有一个修复程序,我想让Rails核心团队研究一下。如何将更改推送到分叉的Rails版本。 记住,当我克隆时,我没有克隆派生版本,而是克隆了只读版本。 不是我反对分叉。只是有时候我认为我只是要浏览,然后才想添加一些东西。

6
从分离的头部推动Git
我头昏脑胀,做了一些更改。我想用Git将这些更改推到这个独立的头上。我不希望我的更改进入开发分支,当然也不要进入主分支。我正在与另一个人一起处理文件。 示例分支 develop master *(HEAD detached at origin/49792_testMocha) 我如何在不影响开发或掌握的情况下努力奋斗?
77 git  git-push 

21
推到Github时Git推挂了吗?
每当我尝试推送到github时,Git推送都会挂起。我正在使用Cygwin和Windows7。Git在本地跟踪分支,提供状态,设置全局user.name和user.email以及允许提交等方面的功能很好。 我还是新手,正在学习。 我输入git push,git push origin master或者git push -u origin master什么都没有,只有空白行要求我ctl-c才能得到提示。 ssh-keygen -t rsa -C "me@example.com" 问我一个文件名并挂起 git push heroku master 挂 $ git status 退货 On branch master nothing to commit, working directory clean $ git pull 退货 Already up to date $ git remote -v 返回: heroku git@heroku.com:myherokusite.git …

13
git push heroku master说“一切都是最新的”,但该应用程序不是最新的
我在Heroku上有一个运行旧代码的应用程序。我做了一个小小的更改并提交了更改。然后我跑了 git push heroku master 会说 Fetching repository, done. Everything up-to-date 但是,如果我去看看应用程序,那都是旧代码。大约15天前,我确实将网站恢复为Heroku的另一个版本,但从那时起便将更新推送到该网站,并且他们成功了。 为什么heroku无法从github存储库中获取最新文件?有没有一种方法可以重置应用程序并再次从github推送文件?我的数据库中有生产数据,所以我不想碰它。 提前致谢!!
72 git  github  heroku  push  git-push 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.