Git global setup
1 | git config --global user.name "Peak" |
Create a new repository
1 | git clone http://47.105.160.77/php/media-e-commerce/station-face-sys.git |
Push an existing folder
1 | cd existing_folder |
Push an existing Git repository
1 | cd existing_repo |
git clone an existing folder
1 | git clone https://myrepo.com/git.git temp |
生成 SSH 公钥
默认情况下,用户的 SSH 密钥存储在其 ~/.ssh 目录下
1 | # cd ~/.ssh |
寻找一对以 id_dsa
或 id_rsa
命名的文件,其中一个带有 .pub
扩展名的文件是你的公钥,另一个则是与之对应的私钥。
如果找不到这样的文件(或者根本没有 .ssh 目录),你可以通过运行 ssh-keygen 程序来创建它们。
1 | # ssh-keygen -o |
查看公钥信息
1 | ]# cat ~/.ssh/id_rsa.pub |
关于在多种操作系统中生成 SSH 密钥的更深入教程,请参阅 GitHub 的 SSH 密钥指南 https://help.github.com/articles/generating-ssh-keys。