我是window系统git安装好了,怎么配置才能有让我本地项目代码和github上面进行有效的交互。我想弄个个人静态博客,不太清楚怎么配置。还请各位大神指点谢谢
window
git
github
Konfigurasi setempatRSAKuncikeyGenerasi
RSA
key
#<你的用户名> $ git config --global user.name "Your Name" #<你所用邮箱> $ git config --global user.email "Your@Email.com" #<执行命令后会在电脑用户主目录下生成.ssh文件,有id_rsa和id_rsa.pub两个文件不管你用的是GitHub还是用了自己搭配的Git服务器,打开id_rsa.pub公钥全选复制,粘贴到Git服务器上面添加Add SSH Key的地方保存,这样本地Git和服务器Git关联起来了。> $ ssh-keygen -t rsa -C "Your@Email.com" #<从远程主机克隆一个版本库到本地> $ git clone git@github.com:example/example.git #<添加修改文件> $ git add example.html #<提交> $ git commit -m '修改文件' #<更新到远程> $ git push origin master
Anda boleh merujuk kepada Git ini untuk mendapatkan butiran saya harap ia akan membantu anda
Konfigurasi setempat
RSA
Kuncikey
GenerasiAnda boleh merujuk kepada Git ini untuk mendapatkan butiran saya harap ia akan membantu anda