Jakub Narębski

6,895
reputation
625 views

Registered User

name Jakub Narębski
member for 12 months
seen 59 mins ago
website
location Toruń, Poland
age 33
11h
answered Git how to find out which single commits that done on one branch and not another
1d
comment How do I force git to think a file is unmerged?
No octopus: merges are 3-way merges in Git, therefore three versions needed. I'll try to come up with an example later.
1d
accepted How do I force git to think a file is unmerged?
1d
answered Trying to learn about SCM history/revision/restore algorithms, especially GIT
1d
answered How do I force git to think a file is unmerged?
1d
revised How to make sure what I commit does not contain whitespace error
typo fix
1d
comment Git - how to tell which commit a tag points to
@mipadi: For un-annotated tags it soedn't matter; for annotated tags you can use git rev-parse $TAG^{commit} or git rev-parse $TAG^{} to dereference annotated/signed tag
1d
revised Using git to find first introduction of token on a specific line of a file…
spellcheck, some explanation about pickaxe search
2d
answered Using git to find first introduction of token on a specific line of a file…
2d
answered Git - how to tell which commit a tag points to
2d
comment Git - how to tell which commit a tag points to
Why not use git rev-parse <tag>? Or git rev-list -1 <tag>?
Dec
7
comment git remote update
You can configure which remotes to fetch when running git remote update, see git-remote manpage.
Dec
7
answered git: how to add/commit removals made via vanilla rm?
Dec
4
comment When would you use the different git merge strategies?
You don't need to specify octopus merge strategy: it is used automatically if you merge more than two branches (git merge A B ...).
Dec
4
comment When would you use the different git merge strategies?
I wonder why the negative vote without any comment...
Dec
4
answered practical git commands to compare/diff between various branches
Dec
4
comment How can one setup a version control system on a local network, without a server?
@Erik: not true. See e.g. stackoverflow.com/questions/1598759/…
Dec
4
comment How can one setup a version control system on a local network, without a server?
or Bazaar. (I would not recommend using less known DVCS like Darc or Monotone unless you have specific requirements that make it better to use them)
Dec
4
answered How can I get list of branches emerging from any branch in git ?
Dec
3
answered With Git, how can I commit some changes in the working copy to a different branch?
Dec
3
answered How to make sure what I commit does not contain whitespace error
Dec
3
comment Git: Should I ignore the Index or is there a killer application for it?
IMVHO you can ignore index most of time... but when you need it, it is very useful.
Dec
3
comment Git: Should I ignore the Index or is there a killer application for it?
That's what git stash save --keep-index is for: to be able to test (partially) staged changes.
Dec
3
accepted How can I wipe out my local branch in GIT?
Dec
2
answered How can I wipe out my local branch in GIT?
Dec
2
answered Does grit have to be on the same server as the repositories?
Dec
2
answered Copying minor updates to another branch with git
Dec
2
awarded  Necromancer
Dec
2
accepted For a shared git repo served over SSH and HTTPS, how to control access for both protocols?
Dec
1
answered Sharing git between different users
Dec
1
answered Generating statistics from Git repository
Dec
1
comment How to handle widespread code format changes in a git repository
And -M / -C options to git diff and git blame make it follow renames and copies; in the case of git blame also moving and copying of fragments of code across files.
Dec
1
answered SSH Public key denied on “git clone” command.
Dec
1
answered What are these ^M’s that keep showing up in my files in emacs?
Dec
1
answered How to chose the right language to build a git server web application like github?
Nov
28
comment Which merge strategies does mercurial use?
"recursive" merge strategy was designed to deal with criss-cross merges and other situations with more than one merge base.... and with renames in such situation.
Nov
28
comment Which merge strategies does mercurial use?
"fast-forward" is not rebase: is actually the opposite of "up-to-date", in a sense that current branch is ancestor of merged branch. By default (i.e. no --no-ff option) Git just advances branch head instead of performing pointless merge.
Nov
27
comment Git: how to reverse-merge a commit?
You would probably need to supply -m <parent number> option to git revert to specify which change to revert. If you want to undo a merge of non-published history, use git reset --hard HEAD^1.
Nov
27
comment Avoid pass-phrase prompt on git push to remote.
And [keychain](gentoo.org/proj/en/keychain) to have it automated.
Nov
27
comment To have extra info at a prompt for Git by Zsh
Don't use git branch to get current branch name, it is porcelain: use git symbolic-ref HEAD.
Nov
27
awarded  Popular Question
Nov
26
comment What Source Control?
With Git (and IIRC also with Mercurial you have .git directory only in single place - top directory of your project; I don't know about Bazaar, but I guess it is also true for it.
Nov
26
answered How to build a web App with Git front end utils ?
Nov
26
answered compare local git branch with remote branch?
Nov
25
comment Git merge recursive not doing what I want.
And there is also :1:path/to/file syntax to access given stage in the index (with conflict partially resolved).
Nov
25
comment Local executing hook after a git push?
Same information can be found in: permalink.gmane.org/gmane.comp.version-control.git/…
Nov
25
comment working copy is on master branch, how to update from remote server?
If you have local "master" branch checked out, then "git pull origin master" (or even simply "git pull origin", or perhaps even "git pull") would update this branch.
Nov
25
comment working copy is on master branch, how to update from remote server?
Do not use git pull <remote> <remote-branch>:<local-branch> syntax, unless you really, really, really know what it would do. Just... don't.
Nov
25
answered Enable ident string for Git repos
Nov
25
comment Git global tags— evidently bad, but why?
Tags are not automatically included during pushing, because by default git pushes matching refs (and by definition new tags would not be present on remote side, hence would not be matching).