Tag: 混帐

git rebase致命的:需要一个单一的修订

我有一个公共存储库的分支,我试图用原始存储库中的当前提交更新我的分支: $ git fetch <remote> remote: Counting objects: 24, done. remote: Compressing objects: 100% (20/20), done. remote: Total 20 (delta 12), reused 0 (delta 0) Unpacking objects: 100% (20/20), done. From git://github.com/path_to/repo 9b70165..22127d0 master -> $/master $ git rebase <remote> fatal: Needed a single revision invalid upstream <remote> <remote>代替我的远程名称,实际上并不是我的远程名称。 关于这个错误的文档似乎有点松动。

根据Git,谁是“我们”,谁是“他们”?

在Git rebase之后,在其他情况下,您可以在git status报告中find一些标记为已删除的文件。 根据Git, 我们是谁?为什么? 它是指我坐在这个分支上,它为我工作? 或者是指自己和在分支上工作的人呢?

我怎样才能让git做“你的意思”的build议?

我input git puhs 而git说: kristian@office:~/myrepo$ git puhs git: 'puhs' is not a git command. See 'git –help' Did you mean this? push 如果只有一个build议,那么git的configuration设置是什么?

Git:从其他分支拉

我从GitHub上的一个项目创build了一个fork。 我现在怎样才能从我分手的项目中获得更改?

在git中列出项目中的所有开发人员

是否有可能在git中列出所有贡献项目的用户(已完成提交的用户)? 任何额外的统计

Git Shelve vs藏匿

我很不熟悉Git的shelve方面。 如果stash是用来搁置未完成的工作什么是shelve呢? 你会用它做什么?

如何在1.8.3中存储stream行特定的存储?

我刚刚升级了git。 我在git版本1.8.3。 今天早上,我试图在堆栈中清除一个更深的变化。 我跑git stash pop stash@{1}并得到这个错误。 fatal: ambiguous argument 'stash@1': unknown revision or path not in the working tree. Use '–' to separate paths from revisions, like this: 'git <command> [<revision>…] — [<file>…]' 我已经尝试了大约20多个变化,以及使用apply而不是pop ,没有成功。 什么改变了? 其他人遇到这个?

是否有可能为不同的项目有不同的gitconfiguration

.gitconfig通常存储在user.home目录中。 我使用不同的身份来处理公司A的项目和公司B的其他项目(主要是名称/电子邮件)。 我怎样才能拥有2种不同的gitconfiguration,以便我的签入不会使用名称/电子邮件?

'git branch -av'显示不再存在的远程分支

这可能是一个愚蠢的问题,但我是全新的混帐,并看到一个远程分支不再存在。 $ git branch -a * master remotes/origin/master remotes/origin/production 我不相信生产分支是远程存在的,不知道为什么它仍然显示在本地。 我怎样才能删除/删除这个分支? 以下是试图删除它的样子: $ git push origin :production error: unable to push to unqualified destination: production The destination refspec neither matches an existing ref on the remote nor begins with refs/, and we are unable to guess a prefix based on the source ref. error: failed […]

如何撤消上次提交

我做了以下评论 git add /file1/path git rm /file/path git commit -m "message" 我如何撤消我最后一次提交使用Git? 就像我不想提交这些文件一样。