赞
踩
前提:已有GitHub账号,Ubuntu里安装了git。//sudo apt-get install git
git config --global user.name "your username"
git config --global user.email "your email"
git add
git commit -m "修改说明"
git push
push确定之后,在Ubuntu系统,需要输入username和password,username为GitHub的username,password为生成的token;如果是在win系统下,会弹出框,直接输入token即可。
创建并移动到文件夹
git init
修改
git add
git commit -m "description"
git remote add origin https://github.com/username/xxx.git
输入用户名和密码
git push -u origin master
git clone 报错 Connection refused:一般是开了代理,关掉即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。