安卓上传到Github命令行
2019-07-20 本文已影响0人
今天也要努力呀y
git init
git add .
git push origin master
更新提交时
git add .
git commit -m "加入什么功能"
git push origin master
clone时:
先fork到你的仓库
git clone +你仓库的网址(快捷键粘贴shift+insert)
git init
git add .
git push origin master
更新提交时
git add .
git commit -m "加入什么功能"
git push origin master
clone时:
先fork到你的仓库
git clone +你仓库的网址(快捷键粘贴shift+insert)