安装git
sudo apt-get install git
用户信息
git config有三个等级,所有用户,当前用户和当前项目,均在各自的config文件中,具体参考菜鸟教程 配置个人信息
git config --global user.name "runoob"
git config --global user.email test@runoob.com
配置SSH
ssh-keygen -t rsa -C "your-email"
连续3个回车。如果不需要密码的话。 最后得到了两个文件:id_rsa和id_rsa.pub 如果不是第一次,就选择overwrite
- 添加ssh到github中
在github个人设置的SSH and GPG keys中粘贴这个ssh即可 - 测试
ssh -T git@github.com
Git基本操作
git clone xxxx.git
git add --a
git commit -m "your note"
git push origin master/main
这一步master为你的github的branch github会让双重认证,其中密码需要填写自己在github生成的token 获得token的方式在setting的Developer settings中 因为github在境外所以可能会链接不上出现TLS连接问题--------------->参考terminal链接
git pull
|