Ubuntu配置GitHub

前提:已有GitHub账号,Ubuntu里安装了git。//sudo apt-get install git

1、设置GitHub账号信息

git config --global user.name "your username"

git config --global user.email "your email"

2、在GitHub设置里生成token。//2021年之后不能用密码登录了

Ubuntu配置GitHub_第1张图片

3

3.1、对clone的远程仓库进行修改

git add

git commit -m "修改说明"

git push

push确定之后,在Ubuntu系统,需要输入username和password,username为GitHub的username,password为生成的token;如果是在win系统下,会弹出框,直接输入token即可。

3.2、本地新建仓库,push到远程

创建并移动到文件夹

git init

修改

git add

git commit -m "description"

git remote add origin https://github.com/username/xxx.git

输入用户名和密码

git push -u origin master

Git 报错

git clone 报错 Connection refused:一般是开了代理,关掉即可。

你可能感兴趣的:(ubuntu,github,git)