一次性设置github库用户名与密码

系统

        ubuntu16.04

添加github库网址

指令:

git clone [github库网址]

cd [github库]

git config --global credential.helper store

添加用户名与email

指令:

git config --global user.email "你的邮箱"

git config --global user.name "你的github用户名"

编辑文件

指令:

git add [你修改的文件]

git commit -m "随便编辑"

git push

然后输入用户名和密码即可,以后就可以直接使用git push了,不需要再次输入。

你可能感兴趣的:(一次性设置github库用户名与密码)