文件名称:zahn_exercise:这个仓库是用来学习git的!
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-17 21:22:11
Python
zahn_exercise
添加远程仓库
在Github上创建一个远程仓库,可以从这个仓库克隆出新的仓库,也可以把一个已有的本地仓库与之关联,然后,把本地仓库的内容推送到GitHub仓库。
添加远程仓库
git remote add origin https://github.com/zahnzahn/zahn_exercise.git
推送本地库内容到远程库
将master分支推送给origin主机远程仓库,第一次推送分支使用-u表示与远程对应分支建立自动关联
git push -u origin master
推送代码到远程仓库
git push origin <当前分支>
撤销修改
丢弃工作区的修改
git checkou -- file
丢弃添加到暂存区的修改
git reset HEAD
【文件预览】:
zahn_exercise-main
----hello.py(91B)
----README.md(3KB)