1.安装github客户端
Git-2.40.1-64-bit.exe
2.创建代码存放目录,比如我在桌面创建github目录
进入到github目录后,右键gitbash进入命令行模式
初次上传:
git clone https://github.com/hxlsky/myibd2sdi.git
git init
git add parse_ibd2sdi.py
git config --global user.name hxlsky
git config --global user.email [email protected]
git commit -m "解析ibd2sdi输出结果01"
git remote add origin https://github.com/hxlsky/myibd2sdi.git ##初始上传使用
git push -u origin master ##这个时候会弹出输入账号密码,文件上传后存放到master分支
再次上传:
直接进入到github目录
右键gitbash进入命令行模式
git add parse_ibd2sdi.py
git config --global user.name hxlsky
git config --global user.email [email protected]
git commit -m "解析ibd2sdi输出结果01"
git push -u origin master ##上传到master分支
上传到指定分支
cd github_test
git init
git checkout -b test
git remote add origin https://github.com/hxlsky/myibd2sdi.git
git add parse_ibd2sdi.py
git commit -m "测试分支"
git push -u origin test --force
标签:origin,git,ibd2sdi,--,add,github,使用 From: https://www.cnblogs.com/hxlasky/p/17433565.html