skip to main
|
skip to sidebar
Baby Steps in I.T.
An attempt to sound like I know something about software.
Monday, 28 May 2012
Samba change password
To change your network password, use Samba:
smbpassword -r
-U
NB: There are spaces between the arguments and the values.
Tuesday, 22 May 2012
Delete remote branch
To delete a branch, you must remove it locally and remotely.
Locally:
git branch -d
(this ensures the branch is fully merged elsewhere)
or
git branch -D
(this deletes the branch regardless of its merged status)
To delete the remote branch, use:
git push origin :
Agent admitted failure to sign using the key.
After creating a new SSH key I found I needed to run:
ssh-add ~/.ssh/id_rsa
before I could authenticate using the key.
How to find out your SSH Fingerprint
The SSH fingerprint it a hash of your ssh key. You can use it as a superficial method of comparing two SSH keys to check that they are (very probably) the same.
The command is:
ssh-keygen -lf ~/.ssh/id_rsa.pub
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)
Blog Archive
▼
2012
(5)
▼
May
(4)
Samba change password
Delete remote branch
Agent admitted failure to sign using the key.
How to find out your SSH Fingerprint
►
February
(1)
►
2011
(2)
►
October
(1)
►
September
(1)
►
2009
(1)
►
June
(1)
►
2008
(1)
►
September
(1)
About Me
Banksy
My name is 'Banksy'. I am a boy.
View my complete profile