1,110 questions
1
vote
1
answer
114
views
Repositories stored in OneDrive folder lose overlays. Local repositories are not impacted
My organization uses OneDrive that mimics the old 'documents' folder, i.e.:
C:\Users\user.name\OneDrive - XYZcorporation\Documents
Placing the repository into the OneDrive documents folder breaks the ...
1
vote
1
answer
75
views
Why cant I call TortoiseGitProc from cygwin?
On my Win11 machine, I have mounted a network share Y: and in there is a git repository (not bare): Y:\myRepo.
I now have a bash script in my cygwin installation that does some stuff and then should ...
-1
votes
1
answer
41
views
How to reorder commits in TortoiseGit rebase dialog using keys?
Especially with a larger list of commits, I sometimes lose track of where to place a commit when scrolling during tracking a commit to its new place. I thought it would be much more accurate if it ...
0
votes
1
answer
86
views
Interactive hooks in TortoiseGit
I added a new git pre-push hook, to avoid pushing a commit without a specific file, asking the user to approve pushing without that file:
echo -e "Are you sure you want to continue without the ...
0
votes
1
answer
29
views
Github login by every difference path
I am using Window 11, and use Tortoisegit,and try to use multi github account in my Window for multi path of github.
Git clone will require username/passwordToken by every difference path.
1
vote
2
answers
314
views
How to make TortoiseGit not open SVG files with image compare tool
I have an svg file in Git and I want to see a diff of local changes. I would expect the config setting for which files are opened with TortoiseGitIDiff to be in TortoiseGit settings/Diff Viewer/...
-1
votes
1
answer
1k
views
Bitbucket: Getting "No supported authentication methods available (server sent: publickey)" when using with ssh keys
I know there's many similar questions like this out there already, but so far I couldn't find any describing or adressing/ resolving my exact issue yet.
I've just setup my personal ssh key in ...
0
votes
1
answer
84
views
TortoiseGit stuck in "merge mode", cannot restore pull option in menu
This is related to this question about why the pull option in the TortoiseGit menu is missing - a (conflicting?) merge is in process, so pull is hidden from the context menu. But when I try both ...
1
vote
1
answer
1k
views
Windows 11 TortoiseGit menu not showing after Register context menu clicked
I have try to googling method/ways that can make the TortoiseGit menu show in the main context menu in Windows 11 but still not showing.
Like this
Custom Context Menu for Windows 11 - For this I can ...
3
votes
0
answers
325
views
TortoiseGit - Change font size of Commit and Diff windows
OS - Windows 11,
TortoiseGit 2.15.0.0
I want to increase font size of TortoiseGit Commit and Diff windows
I tried updating the font size
In Tortoise Git > Settings > For below configurations, i ...
3
votes
1
answer
171
views
how does tortoise git get commit information?
A strange question here. I need to filter out some part of any commit message in a repo (it's a long hash automatically added after some migration).
As I'm (and my team also) using tortoise git, I ...
0
votes
1
answer
38
views
Git, tortoisegit. How to run my cmd file after every commit
I use tortoisegit. How can I run my cmd file after commit on some of my repositories . I mean use an event on commit on repository?. I do all of my meaningful commits only by tortoisegit and i need it ...
0
votes
1
answer
70
views
TortoiseGit not working using GIR_DIR and GIT_WORK_TREE?
The main aim of what I'm trying to is to have two Git repositories in the same tree and for TortoiseGit to display differences of a modified file.
Here is the scenario. Two git repos: MainProj and ...
13
votes
1
answer
853
views
Get rid of extended git repository information shown in the title bar of explorer
It seems like tortoisegit added some information in the title bar of windows explorer.
It shows how far behind/ahead of the tracked repository we are.
How do I get rid of it?
32
votes
4
answers
30k
views
After upgrade getting error "repository not owned by current user"
After upgrading to latest tortoise git I get error below. When I commit from the command line, this works without error. I executed the global command but error persist.
0
votes
0
answers
35
views
Detect Errors using TortoiseGitProc.exe to initiate pull in a console application
I'm programmatically calling tortoiseGitProc.exe to perform a pull of source code files. The process works fine in that I get the TortoiseGit Pull dialog and all is well. What I cannot do is ...
1
vote
1
answer
460
views
What is additional "onto" button in TortoiseGit Rebase?
In TortoiseGit->Rebase window has these two selectors :
What is the purpose of Onto selector, while in Upstream you already select the branch you are rebasing onto.
0
votes
1
answer
429
views
Configure TortoiseGit to pull all submodules when pulling superproject
I'm looking for a 1 click option in TortoiseGit for pulling the parent project as well as updating all the submodules to point to the latest HEAD. I know you can do the following after a pull with ...
9
votes
2
answers
6k
views
TortoiseGIT not showing in menu Windows 11
I have installed Tortoise GIT into Windows 11 and its not showing at all in the context menus, both the normal menu or the windows 11 menu
I have uninstalled and reinstalled loads of times
Has anyone ...
0
votes
1
answer
350
views
GIT pull not showing any changes [duplicate]
We are using bit bucket as a repository. Below is a scenario we got.
Pull from Branch A (commit already in Develop Branch of A) -> B (git pull origin A)
Reverted commit in branch B of A (git ...
1
vote
1
answer
677
views
Connecting TortoiseGit to github using different SSH credentials per repo
I have several repos on github, and two different accounts. My accounts are the creators of both repos which are discussed below (username1 created repo1 and username2 created repo2).
How do I ...
0
votes
1
answer
331
views
problem in git sync or git pull when I delete my local file?
I have cloned my remote repo to the local machine. I deleted some files from my local but when I use git sync or git pull to get my missing files from remote repo, Tortoise git show me everything is ...
0
votes
1
answer
101
views
Modifications in files appeared again after Tortoise Git reverting
Im using TortoiseGit and in some cases I got this error.
I have modified files, which I haven't changed by myself.
I'm reverting them and everything looks good. 1
But when I hit F5 and refresh window,...
0
votes
1
answer
737
views
tortoisegit: Setting path to git.exe to an invariable destination
we are using tortoisegit 2.11.0 and the PATH variable at windows is pointing to the standard installation path at c:\Program Fles..... Can't change this because of system rights!
Now, our git.exe to ...
5
votes
1
answer
3k
views
How to Sparse checkout with Tortoise Git?
The working way to sparse checkout using git bash is:
git clone \
--depth 1 \
--filter=blob:none \
--sparse \
https://github.com/darc-coder/FindMyQRApp \
cd test-git-partial-clone
git sparse-...