首页 > 代码库 > github上传文件
github上传文件
之前用过github管理自己的代码,但是一直记不住语句,今天又用到github,还是记录下来吧!
1.初次上传自己的代码
在github上创建自己的库,然后在你的代码的目录下执行:
git init
touch README.md
git add README.md
git commit -m ‘first_commit‘ 执行这句话的时候有时候会出错
当出现这个错误的时候,根据提示执行: git config --global user.email "you@example.com" 你的git账户的邮箱
git config --global user.name "Your Name" 你git账户的用户名
git remote add origin https://github.com/nicky-ji/Turbo.git
git push origin master
2. 更新自己的代码库
此是用于更新代码库的方法
git add . (注意后面有个点号.)
git commit -m ‘first_commit‘
git remote add origin https://github.com/nicky-ji/Turbo.git
执行的时候可能会出现以下的出现,执行语句git remote rm origin
git push origin master 输入用户名和密码就ok啦!
ps:
其实我第一次接触github的时候,用上面的第一个办法没有成功。而是先将空的代码库clone下来的,
先执行git clone https://github.com/nicky-ji/Turbo.git 再执行2的语句。嘿嘿,也是一个办法哇
github上传文件