$ gdb
handle SIGSTOP nostop noprint
or you can pass into:
.gdbinit
Tuesday, 18 July 2017
Monday, 26 June 2017
Disable calculating git delta for binary files
just add following lines into
.gitattributes
data/* binary -delta -diff
.gitattributes
data/* binary -delta -diff
Tuesday, 23 May 2017
Quick POSIX slash replacement
export JENKINS_ROOT="${JENKINS_ROOT//\\//}"
Tuesday, 3 January 2017
Strange GIT ssh error
$ git clone -v ssh://my.name@gerrit.company.com:29418/repo_name
Cloning into 'repo_name'...
FATAL ERROR: Disconnected: No supported authentication methods available (server sent: publickey)
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
The soluation:
Put
unset GIT_SSH
into .profile
Cloning into 'repo_name'...
FATAL ERROR: Disconnected: No supported authentication methods available (server sent: publickey)
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
The soluation:
Put
unset GIT_SSH
into .profile
Subscribe to:
Posts (Atom)