Skip to main content
LeGEC's user avatar
LeGEC's user avatar
LeGEC's user avatar
LeGEC
  • Member for 15 years, 3 months
  • Last seen this week
  • Dubai, UAE
comment
Why does `Could not execute the todo command` reappear after `git rebase --edit-todo` has been executed?
You have pending modifications on tracked files, you need to deal with them before proceeding: commit them or discard them. Then run git rebase --continue
Loading…
comment
How can I remove a change(s) in a previous git commit's history?
@JuanBustamante : please update your questino with the current output of git log --graph --oneline --name-status -- path/to/file, and indicate which commit contains the changes and which commit contains the revert
comment
Why does only right click work for my folders to use Git Bash?
I’m voting to close this question because it belongs to serverfault.com (question about how Windows special folders work)
comment
Why does only right click work for my folders to use Git Bash?
@phd: true indeed :) this turns out to be a question about Windows. Should be moved to serverfault.com
Loading…
comment
Why does only right click work for my folders to use Git Bash?
as a generic rule: SO favors text over images, please update your question by copy/pasting file paths copied from the explorer or your terminal, rather than pasting screen captures.
comment
Why does only right click work for my folders to use Git Bash?
In Windows, some locations that show up with a directory icon in the explorer are not regular directories but so called "Special Folders" (for example: My Documents or My Pictures). Can you give a more precise example of a directory that does not show up ? When you open a git-bash terminal by right cliking on a folder, then type pwd inside that terminal, does the directory path mentioned there match what you expected ?
Loading…
comment
io.Copy on ssd costs too much time
io.Copy both reads and writes, have you ruled out any slowness on the reader side ?
revised
Loading…
Loading…
comment
git push failed with error object hasDotgit: contains '.git'
@awsmce: you are correct. Actually having any file or directory named .git is suspicious, I updated my answer by removing the filter
revised
Loading…
comment
How to find the worktree path of a branch
"parsing" it should be as simple as git worktree list --porcelain | grep -B2 "^branch refs/heads/$branchName"
Loading…
comment
interface conversion: interface {} is map[string]interface {}, not
do you mean you can't edit the structure of HubEvent at all ? for example to set Payload *EventPayload ?
revised
Loading…
revised
Comparing two branches yields different diffs
added 286 characters in body
Loading…
Loading…
1
2 3 4 5
381