Github笔记

一 SSH 连接

1 创建ssh key

ssh-keygen -t rsa -C "[email protected]"

2 登录github添加

验证

ssh -T [email protected]

3 绑定用户

$ git config --global user.name "Your Name"   //git logon name
$ git config --global user.email "[email protected]"

二 命令

git clone https://github.com/Ansonhrj/HelloGithub.git 

git add helloSunday.txt

git add .  //跟踪整个工程


git commit -m "description" 
git push origin master

 

 

 

你可能感兴趣的:(Git)