FAQ Database Discussion Community
git,ssh,gitlab,ssh-keys
I've been having a bit of a head ache with trying to pull down a repository held in Gitlab. This is all done in Windows 8.1 on a Ubuntu VM by the way if that helps. I've added my public key in Gitlab and added my private key to ssh-agent...
git,ssh,ssh-keys,atlassian-stash
I'm actually in the process of setting Atlassian Stash for my Workplace. I've ran into this issue which I'm not able to fix. Note, this is running on a Windows 7 64bits installation. When setting the SSH Keys, I followed the Stash Guide on how to create them and set...
git,ubuntu,github,ssh-keys
I recently started using git on windows 7 and configured everything to access Github, Bitbucket and a private server over ssh. Now I am switching to Ubuntu OS and I am not sure how to copy the keys and configuration settings over to Ubuntu. Will you please help me out...
git,github,ssh-keys
I recently set up a project on cloud9 (c9.io). When you set up a project on cloud9, there is a .ssh directory with both public keys and private keys. I assume these are generated when you set up your account. After creating a git repository, I set the origin to...
linux,git,ssh,bitbucket,ssh-keys
Ubuntu 14.04 I'm not too sure about this, If I look in the contents of ~/.ssh/ I have a few files in there, I'm just about to setup a key for use with BitBucket. I'm not sure if I'm meant to have multiple keys for different purposes or if I...
git,bitbucket,ssh-keys,public-key
I am having problems to add my ssh public key to my bitbucket account. It seems that i accidentally added my personal key as a deployment key for my bitbucket team. Now when I am trying to add it as my accounts key, it states that this key is already...
git,ssh,virtual-machine,gitlab,ssh-keys
I've recently set up a Git repository and after some fiddling managed to get everything set up correctly so that I could pull and push from Git in my Windows 8.1 environment using SSH keys and pulling from Gitlab ... however in my Ubuntu VM I try to do the...
python,git,ssh-keys,gitpython
How can I use GitPython along with specific SSH Keys? The documentation isn't very thorough on that subject. The only thing I've tried so far is Repo(path)....
terminal,osx-yosemite,keychain,ssh-keys
Doing the following: ssh-keygen -t rsa ... security import ~/.ssh/id_rsa -k login.keychain -t priv -f openssh2 I get the following error: security: SecKeychainItemImport: Unknown format in import. ...
hadoop,ssh,mapreduce,ssh-keys
I am trying to run Hadoop in Pseudo-Distributed mode. For this I am trying to follow this tutorial http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-common/SingleCluster.html I can ssh to my localhost and Format the filesystem. However, I can't start NameNode daemon and DataNode daemon by this command : sbin/start-dfs.sh When I execute it with sudo I...
git,ssh,gitlab,ssh-keys
I've been trying to pull down a repository from Gitlab using SSH keys. All done in command line on Windows 8 via a Ubuntu VM. I've added my public key to my Gitlab account and then added my private key to the ssh-agent and didn't seem to have any errors...
shell,unix,scripting,make,ssh-keys
I'm working on some legacy software and need to build manually every time. How can I automate the following steps within a shell script?: clearmake clean clearmake clearmake package scp /path/to/package [email protected]:path password: Also, how to make clearmake faster? Should I change the type of encryption on the remote host...